2014-02-27 34 views
0

請,給我這個功能參數在proc功能TYPO3

function proc($wizardItems)  { 
      $wizardItems['plugins_tx_examples_pierror'] = array(
'icon'=>\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extRelPath('examples') .'Resources/Public/Images/PiErrorWizard.png', 
        'title' =>$GLOBALS['LANG']>sL('LLL:EXT:examples/locallang.xlf:pierror_wizard_title'), 
        'description' =>$GLOBALS['LANG']>sL('LLL:EXT:examples/locallang.xlf:pierror_wizard_description'), 
        'params' =>'&defVals[tt_content[CType]=list[list_type]=examples_pierror' 
      ); 

      return $wizardItems; 
    } 
} 

此功能在擴展用來顯示我們在擴展嚮導擴展的解釋。

回答