当前位置: 首页>>代码示例>>PHP>>正文


PHP StandaloneView::setPartialRootPaths方法代码示例

本文整理汇总了PHP中TYPO3\CMS\Fluid\View\StandaloneView::setPartialRootPaths方法的典型用法代码示例。如果您正苦于以下问题:PHP StandaloneView::setPartialRootPaths方法的具体用法?PHP StandaloneView::setPartialRootPaths怎么用?PHP StandaloneView::setPartialRootPaths使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TYPO3\CMS\Fluid\View\StandaloneView的用法示例。


在下文中一共展示了StandaloneView::setPartialRootPaths方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: initFluidTemplate

 /**
  * inits the standalone fluid template
  */
 public function initFluidTemplate()
 {
     $this->searchFormView = GeneralUtility::makeInstance('TYPO3\\CMS\\Fluid\\View\\StandaloneView');
     $this->searchFormView->setPartialRootPaths([$this->conf['partialRootPath']]);
     $this->searchFormView->setLayoutRootPaths([$this->conf['layoutRootPath']]);
     $this->searchFormView->setTemplatePathAndFilename($this->conf['templateRootPath'] . 'SearchForm.html');
     // make settings available in fluid template
     $this->searchFormView->assign('conf', $this->conf);
     $this->searchFormView->assign('extConf', $this->extConf);
     $this->searchFormView->assign('extConfPremium', $this->extConfPremium);
 }
开发者ID:teaminmedias-pluswerk,项目名称:ke_search,代码行数:14,代码来源:class.tx_kesearch_pi1.php

示例2: getPartialPathAndFilenameWalksStringKeysInReversedOrder

 /**
  * @test
  */
 public function getPartialPathAndFilenameWalksStringKeysInReversedOrder()
 {
     $this->view->setPartialRootPaths(array('default' => 'some/Default/Directory', 'specific' => 'specific/Partials', 'verySpecific' => 'evenMore/Specific/Partials'));
     $this->mockRequest->expects($this->any())->method('getFormat')->will($this->returnValue('html'));
     $this->view->expects($this->at(0))->method('testFileExistence')->with(PATH_site . 'evenMore/Specific/Partials/Partial.html')->will($this->returnValue(false));
     $this->view->expects($this->at(1))->method('testFileExistence')->with(PATH_site . 'evenMore/Specific/Partials/Partial')->will($this->returnValue(false));
     $this->view->expects($this->at(2))->method('testFileExistence')->with(PATH_site . 'specific/Partials/Partial.html')->will($this->returnValue(false));
     $this->view->expects($this->at(3))->method('testFileExistence')->with(PATH_site . 'specific/Partials/Partial')->will($this->returnValue(false));
     $this->view->expects($this->at(4))->method('testFileExistence')->with(PATH_site . 'some/Default/Directory/Partial.html')->will($this->returnValue(false));
     $this->view->expects($this->at(5))->method('testFileExistence')->with(PATH_site . 'some/Default/Directory/Partial')->will($this->returnValue(true));
     $this->assertEquals(PATH_site . 'some/Default/Directory/Partial', $this->view->_call('getPartialPathAndFilename', 'Partial'));
 }
开发者ID:rickymathew,项目名称:TYPO3.CMS,代码行数:15,代码来源:StandaloneViewTest.php

示例3: setPartialRootPath

 /**
  * Set partial root path if given in configuration
  *
  * @param array $conf Configuration array
  * @return void
  */
 protected function setPartialRootPath(array $conf)
 {
     $partialPaths = array();
     if (isset($conf['partialRootPath']) || isset($conf['partialRootPath.'])) {
         $partialRootPath = isset($conf['partialRootPath.']) ? $this->cObj->stdWrap($conf['partialRootPath'], $conf['partialRootPath.']) : $conf['partialRootPath'];
         $partialPaths[] = \TYPO3\CMS\Core\Utility\GeneralUtility::getFileAbsFileName($partialRootPath);
     }
     if (isset($conf['partialRootPaths.'])) {
         foreach ($conf['partialRootPaths.'] as $key => $path) {
             $partialPaths[$key] = \TYPO3\CMS\Core\Utility\GeneralUtility::getFileAbsFileName($path);
         }
     }
     if (!empty($partialPaths)) {
         $this->view->setPartialRootPaths($partialPaths);
     }
 }
开发者ID:rob-ot-dot-be,项目名称:ggallkeysecurity,代码行数:22,代码来源:FluidTemplateContentObject.php

示例4: main

 /**
  * main method
  *
  * @return string
  */
 public function main()
 {
     $this->view = $this->objectManager->get('\\TYPO3\\CMS\\Fluid\\View\\StandaloneView');
     $this->view->getRequest()->setControllerExtensionName($this->getExtensionName());
     $this->view->getRequest()->setPluginName('UpdateScript');
     $this->view->getRequest()->setControllerName('UpdateScript');
     $this->view->setLayoutRootPaths($this->getTemplateFolders('layout'));
     $this->view->setPartialRootPaths($this->getTemplateFolders('partial'));
     $this->view->assign('requestUri', GeneralUtility::getIndpEnv('REQUEST_URI'));
     $action = GeneralUtility::_GP('action') ? GeneralUtility::_GP('action') : 'Main';
     if (is_callable(array($this, $action . 'Action'))) {
         $this->view->setTemplatePathAndFilename($this->getTemplatePath('UpdateScript/' . ucfirst($action) . '.html'));
         $content = call_user_func_array(array($this, $action . 'Action'), array());
     }
     return $content;
 }
开发者ID:kalypso63,项目名称:px_hybrid_auth,代码行数:21,代码来源:AbstractUpdateScript.php

示例5: setPartialRootPath

 /**
  * Set partial root path if given in configuration
  *
  * @param array $conf Configuration array
  * @return void
  */
 protected function setPartialRootPath(array $conf)
 {
     $partialPaths = array();
     if (isset($conf['partialRootPath']) || isset($conf['partialRootPath.'])) {
         $partialRootPath = isset($conf['partialRootPath.']) ? $this->cObj->stdWrap($conf['partialRootPath'], $conf['partialRootPath.']) : $conf['partialRootPath'];
         $partialPaths[] = GeneralUtility::getFileAbsFileName($partialRootPath);
     }
     if (isset($conf['partialRootPaths.'])) {
         foreach ($conf['partialRootPaths.'] as $key => $path) {
             if (strpos($key, '.') === false) {
                 $partialPaths[$key] = isset($conf['partialRootPaths.'][$key . '.']) ? GeneralUtility::getFileAbsFileName($this->cObj->stdWrap($conf['partialRootPaths.'][$key], $conf['partialRootPaths.'][$key . '.'])) : GeneralUtility::getFileAbsFileName($path);
             }
         }
     }
     if (!empty($partialPaths)) {
         $this->view->setPartialRootPaths($partialPaths);
     }
 }
开发者ID:hlop,项目名称:TYPO3.CMS,代码行数:24,代码来源:FluidTemplateContentObject.php

示例6: render

 /**
  * Add sys_notes as additional content to the footer of the page module
  *
  * @param array $params
  * @param PageLayoutController $parentObject
  * @return string
  */
 public function render(array $params = array(), PageLayoutController $parentObject)
 {
     if ($parentObject->MOD_SETTINGS['function'] == 1) {
         $pageInfo = $parentObject->pageinfo;
         if ($this->pageCanBeIndexed($pageInfo)) {
             // template
             $this->loadCss();
             $this->loadJavascript();
             //load partial paths info from typoscript
             $this->view = GeneralUtility::makeInstance(StandaloneView::class);
             $this->view->setFormat('html');
             $this->view->getRequest()->setControllerExtensionName('cs_seo');
             $absoluteResourcesPath = ExtensionManagementUtility::extPath('cs_seo') . 'Resources/';
             $layoutPaths = [$absoluteResourcesPath . 'Private/Layouts/'];
             $partialPaths = [$absoluteResourcesPath . 'Private/Partials/'];
             // load partial paths info from TypoScript
             if ($this->isTYPO3VersionGreather6) {
                 /** @var ObjectManager $objectManager */
                 $objectManager = GeneralUtility::makeInstance(ObjectManager::class);
                 /** @var ConfigurationManagerInterface $configurationManager */
                 $configurationManager = $objectManager->get(ConfigurationManagerInterface::class);
                 $tsSetup = $configurationManager->getConfiguration(ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK, 'csseo');
                 $layoutPaths = $tsSetup["view"]["layoutRootPaths"] ?: $layoutPaths;
                 $partialPaths = $tsSetup["view"]["partialRootPaths"] ?: $partialPaths;
             }
             $this->view->setLayoutRootPaths($layoutPaths);
             $this->view->setPartialRootPaths($partialPaths);
             $this->view->setTemplatePathAndFilename(ExtensionManagementUtility::extPath('cs_seo') . 'Resources/Private/Templates/PageHook.html');
             $results = $this->getResults($pageInfo, $parentObject->current_sys_language);
             $score = $results['Percentage'];
             unset($results['Percentage']);
             $this->view->assignMultiple(['score' => $score, 'results' => $results, 'page' => $parentObject->pageinfo]);
             return $this->view->render();
         }
     }
 }
开发者ID:clickstorm,项目名称:cs_seo,代码行数:43,代码来源:PageHook.php

示例7: __construct

 /**
  * Class constructor
  * Sets up view and property objects
  *
  * @throws InvalidTemplateResourceException In case a template is invalid
  */
 public function __construct()
 {
     $this->view = GeneralUtility::makeInstance(StandaloneView::class);
     $this->view->setPartialRootPaths($this->partialRootPaths);
     $this->view->setTemplateRootPaths($this->templateRootPaths);
     $this->view->setLayoutRootPaths($this->layoutRootPaths);
     $this->view->setTemplate($this->templateFile);
     $this->pageRenderer = GeneralUtility::makeInstance(PageRenderer::class);
     $this->docHeaderComponent = GeneralUtility::makeInstance(DocHeaderComponent::class);
     $this->iconFactory = GeneralUtility::makeInstance(IconFactory::class);
 }
开发者ID:Gregpl,项目名称:TYPO3.CMS,代码行数:17,代码来源:ModuleTemplate.php

示例8: __construct

 /**
  * Constructor
  */
 public function __construct()
 {
     $this->iconFactory = GeneralUtility::makeInstance(IconFactory::class);
     $this->moduleTemplate = GeneralUtility::makeInstance(ModuleTemplate::class);
     $this->presetRepository = GeneralUtility::makeInstance(PresetRepository::class);
     $templatePath = ExtensionManagementUtility::extPath('impexp') . 'Resources/Private/';
     /* @var $view StandaloneView */
     $this->standaloneView = GeneralUtility::makeInstance(StandaloneView::class);
     $this->standaloneView->setTemplateRootPaths([$templatePath . 'Templates/ImportExport/']);
     $this->standaloneView->setLayoutRootPaths([$templatePath . 'Layouts/']);
     $this->standaloneView->setPartialRootPaths([$templatePath . 'Partials/']);
     $this->standaloneView->getRequest()->setControllerExtensionName('impexp');
 }
开发者ID:burguin,项目名称:test01,代码行数:16,代码来源:ImportExportController.php


注:本文中的TYPO3\CMS\Fluid\View\StandaloneView::setPartialRootPaths方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。