コード例 #1
0
 /**
  * @param ConsoleBootstrap $bootstrap
  */
 public static function initializeExtensionConfiguration(ConsoleBootstrap $bootstrap)
 {
     require_once PATH_site . 'typo3/sysext/core/Classes/Core/GlobalDebugFunctions.php';
     ExtensionManagementUtility::loadExtLocalconf();
     $bootstrap->applyAdditionalConfigurationSettings();
 }
コード例 #2
0
ファイル: Scripts.php プロジェクト: beechit/typo3_console
 /**
  * @param ConsoleBootstrap $bootstrap
  */
 public static function initializeExtensionConfiguration(ConsoleBootstrap $bootstrap)
 {
     // Manual load GlobalDebugFunctions.php for TYPO3 CMS <= 7.3
     if (file_exists(PATH_site . 'typo3/sysext/core/Classes/Core/GlobalDebugFunctions.php')) {
         require_once PATH_site . 'typo3/sysext/core/Classes/Core/GlobalDebugFunctions.php';
     }
     ExtensionManagementUtility::loadExtLocalconf();
     $bootstrap->applyAdditionalConfigurationSettings();
 }
コード例 #3
0
 /**
  * @param ConsoleBootstrap $bootstrap
  */
 public static function applyAdditionalConfigurationSettings(ConsoleBootstrap $bootstrap)
 {
     $bootstrap->applyAdditionalConfigurationSettings();
 }