20 lines
520 B
PHP
20 lines
520 B
PHP
<?php
|
|
|
|
namespace Evomedien\Vitec\Components;
|
|
namespace Evomedien\Vitec\Controller;
|
|
|
|
use TYPO3Fluid\Fluid\Core\Component\AbstractComponentCollection;
|
|
use TYPO3Fluid\Fluid\View\TemplatePaths;
|
|
|
|
final class ComponentCollection extends AbstractComponentCollection
|
|
{
|
|
public function getTemplatePaths(): TemplatePaths
|
|
{
|
|
$templatePaths = new TemplatePaths();
|
|
$templatePaths->setTemplateRootPaths([
|
|
'EXT:Vitec/Resources/Private/Components/',
|
|
]);
|
|
return $templatePaths;
|
|
}
|
|
}
|