*/ class tx_cal_wizicon { function proc($wizardItems) { global $LANG; $LL = $this->includeLocalLang(); $wizardItems['plugins_tx_cal'] = array( 'icon'=>t3lib_extMgm::extRelPath('cal').'controller/ce_wiz.gif', 'title'=>$LANG->getLLL('pi1_title',$LL), 'description'=>$LANG->getLLL('pi1_plus_wiz_description',$LL), 'params'=>'&defVals[tt_content][CType]=list&defVals[tt_content][list_type]=cal_controller' ); return $wizardItems; } function includeLocalLang() { $llFile = t3lib_extMgm::extPath('cal').'locallang.xml'; $LOCAL_LANG = t3lib_div::readLLXMLfile($llFile, $GLOBALS['LANG']->lang); return $LOCAL_LANG; } } if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/cal/controller/class.tx_cal_wizicon.php']) { include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/cal/controller/class.tx_cal_wizicon.php']); } ?>