Gc\Mvc\Factory\ViewTemplatePathStackFactory::createService PHP Метод

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

Creates a Zend\View\Resolver\TemplatePathStack and populates it with the ['view_manager']['template_path_stack'] and sets the default suffix with the ['view_manager']['default_template_suffix']
public createService ( Zend\ServiceManager\ServiceLocatorInterface $serviceLocator ) : TemplatePathStack
$serviceLocator Zend\ServiceManager\ServiceLocatorInterface Service Locator
Результат Gc\View\Resolver\TemplatePathStack
    public function createService(ServiceLocatorInterface $serviceLocator)
    {
        $config = $serviceLocator->get('Config');
        $templatePathStack = new TemplatePathStack();
        if (is_array($config) && isset($config['view_manager'])) {
            $config = $config['view_manager'];
            if (is_array($config)) {
                if (isset($config['template_path_stack'])) {
                    $templatePathStack->addPaths($config['template_path_stack']);
                }
                if (isset($config['default_template_suffix'])) {
                    $templatePathStack->setDefaultSuffix($config['default_template_suffix']);
                }
            }
        }
        return $templatePathStack;
    }
ViewTemplatePathStackFactory