addStaticTypoScript() 공개 정적인 메소드

public static addStaticTypoScript ( mixed $locationOrLocations ) : void
$locationOrLocations mixed
리턴 void
예제 #1
0
 /**
  * @test
  */
 public function leavesRecordsWhichAreNotRootsUntouched()
 {
     Core::addStaticTypoScript(self::FIXTURE_TYPOSCRIPT_DIR);
     $function = 'FluidTYPO3\\Flux\\Backend\\TypoScriptTemplate->preprocessIncludeStaticTypoScriptSources';
     $template = $this->objectManager->get('TYPO3\\CMS\\Core\\TypoScript\\TemplateService');
     $parameters = array('row' => Records::$sysTemplateRoot);
     $parameters['row']['root'] = 0;
     GeneralUtility::callUserFunction($function, $parameters, $template);
     $this->assertNotContains(self::FIXTURE_TYPOSCRIPT_DIR, $parameters['row']['include_static_file']);
     $this->assertSame(Records::$sysTemplateRoot['include_static_file'], $parameters['row']['include_static_file']);
 }
 /**
  * @test
  */
 public function leavesRecordsWhichAreNotRootsUntouched()
 {
     \FluidTYPO3\Flux\Core::addStaticTypoScript(self::FIXTURE_TYPOSCRIPT_DIR);
     $function = $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tstemplate.php']['includeStaticTypoScriptSources']['flux'];
     $template = $this->objectManager->get('t3lib_TStemplate');
     $parameters = array('row' => \FluidTYPO3\Flux\Tests\Fixtures\Data\Records::$sysTemplateRoot);
     $parameters['row']['root'] = 0;
     GeneralUtility::callUserFunction($function, $parameters, $template);
     $this->assertNotContains(self::FIXTURE_TYPOSCRIPT_DIR, $parameters['row']['include_static_file']);
     $this->assertSame(\FluidTYPO3\Flux\Tests\Fixtures\Data\Records::$sysTemplateRoot['include_static_file'], $parameters['row']['include_static_file']);
 }
예제 #3
0
<?php

if (!defined('TYPO3_MODE')) {
    die('Access denied.');
}
\FluidTYPO3\Flux\Core::unregisterConfigurationProvider('Tx_Fed_Provider_Configuration_PageConfigurationProvider');
\FluidTYPO3\Flux\Core::registerConfigurationProvider('FluidTYPO3\\Fluidpages\\Provider\\PageProvider');
\FluidTYPO3\Flux\Core::addStaticTypoScript('EXT:fluidpages/Configuration/TypoScript/');
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin($_EXTKEY, 'Page', array('Page' => 'render,error'), array(), \TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_PLUGIN);
$GLOBALS['TYPO3_CONF_VARS']['FE']['addRootLineFields'] .= ($GLOBALS['TYPO3_CONF_VARS']['FE']['addRootLineFields'] == '' ? '' : ',') . 'tx_fed_page_controller_action,tx_fed_page_controller_action_sub,tx_fed_page_flexform,tx_fed_page_flexform_sub,';
$GLOBALS['TYPO3_CONF_VARS']['SYS']['Objects']['TYPO3\\CMS\\Backend\\View\\BackendLayoutView'] = array('className' => 'FluidTYPO3\\Fluidpages\\Override\\Backend\\View\\BackendLayoutView');
$GLOBALS['TYPO3_CONF_VARS']['SYS']['Objects']['TYPO3\\CMS\\Backend\\View\\PageLayoutView'] = array('className' => 'FluidTYPO3\\Fluidpages\\Override\\Backend\\View\\PageLayoutView');
예제 #4
0
 /**
  * @test
  */
 public function canAddAndRetrieveGlobalTypoScriptCollections()
 {
     Core::addStaticTypoScript(array(self::FIXTURE_TYPOSCRIPT_DIR));
     $registered = Core::getStaticTypoScript();
     $this->assertContains(self::FIXTURE_TYPOSCRIPT_DIR, $registered);
 }
예제 #5
0
파일: ext_localconf.php 프로젝트: 3ev/tev
<?php

if (!defined('TYPO3_MODE')) {
    die('Access denied.');
}
$tevConf = unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['tev']);
// Automatically include TypoScript dependencies
if (!$tevConf['disable_typoscript_autoload']) {
    \FluidTYPO3\Flux\Core::addStaticTypoScript('EXT:css_styled_content/static/');
    \FluidTYPO3\Flux\Core::addStaticTypoScript('EXT:tev/Configuration/TypoScript');
}
// Hook into RealURL config generation
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/realurl/class.tx_realurl_autoconfgen.php']['extensionConfiguration']['tev'] = 'Tev\\Tev\\Hook\\RealUrlAutoConfigurationHook->updateConfig';
// Use xclass to override core Query Parser with patch
$GLOBALS['TYPO3_CONF_VARS']['SYS']['Objects']['TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Storage\\Typo3DbQueryParser'] = ['className' => 'Tev\\Tev\\Extbase\\Persistence\\Generic\\Storage\\Typo3DbQueryParser'];
// Configure mail logger
$GLOBALS['TYPO3_CONF_VARS']['LOG']['tevmail']['writerConfiguration'] = [\TYPO3\CMS\Core\Log\LogLevel::DEBUG => ['Tev\\Typo3Utils\\Log\\Writer\\FileWriter' => ['logFile' => $tevConf['mail_logfile_path'] ?: 'typo3temp/logs/tev_mail.log']]];
<?php

\FluidTYPO3\Flux\Core::addStaticTypoScript('EXT:theme_foundation_apps/Configuration/TypoScript/');
$GLOBALS['TYPO3_CONF_VARS']['FE']['eID_include']['Tx_ThemeFoundationApps_LoadTemplate'] = 'EXT:' . $_EXTKEY . '/Resources/Private/Scripts/eid.php';