mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
52 lines
1.2 KiB
PHP
52 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
namespace Zend\Navigation\Service;
|
|
|
|
use Zend\ServiceManager\ServiceLocatorInterface;
|
|
|
|
/**
|
|
* Constructed factory to set pages during construction.
|
|
*/
|
|
class ConstructedNavigationFactory extends AbstractNavigationFactory
|
|
{
|
|
/**
|
|
* @var string|\Zend\Config\Config|array
|
|
*/
|
|
protected $config;
|
|
|
|
/**
|
|
* @param string|\Zend\Config\Config|array $config
|
|
*/
|
|
public function __construct($config)
|
|
{
|
|
$this->config = $config;
|
|
}
|
|
|
|
/**
|
|
* @param ServiceLocatorInterface $serviceLocator
|
|
* @return array|null|\Zend\Config\Config
|
|
*/
|
|
public function getPages(ServiceLocatorInterface $serviceLocator)
|
|
{
|
|
if (null === $this->pages) {
|
|
$this->pages = $this->preparePages($serviceLocator, $this->getPagesFromConfig($this->config));
|
|
}
|
|
return $this->pages;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getName()
|
|
{
|
|
return 'constructed';
|
|
}
|
|
}
|