FluidTYPO3\Flux\View\TemplatePaths::getPartialRootPaths PHP Метод

getPartialRootPaths() публичный Метод

public getPartialRootPaths ( ) : array
Результат array
    public function getPartialRootPaths()
    {
        return $this->partialRootPaths;
    }

Usage Example

Пример #1
0
 /**
  * @return void
  */
 public function testFillByTypoScript()
 {
     $instance = new TemplatePaths(array('templateRootPaths' => array('EXT:flux/Resources/Private/Templates/'), 'layoutRootPaths' => array('EXT:flux/Resources/Private/Layouts/'), 'partialRootPaths' => array('EXT:flux/Resources/Private/Partials/')));
     $this->assertEquals(array(ExtensionManagementUtility::extPath('flux', 'Resources/Private/Templates/')), $instance->getTemplateRootPaths());
     $this->assertEquals(array(ExtensionManagementUtility::extPath('flux', 'Resources/Private/Layouts/')), $instance->getLayoutRootPaths());
     $this->assertEquals(array(ExtensionManagementUtility::extPath('flux', 'Resources/Private/Partials/')), $instance->getPartialRootPaths());
 }
All Usage Examples Of FluidTYPO3\Flux\View\TemplatePaths::getPartialRootPaths