<?php
/**
 * Zend Framework (http://framework.zend.com/)
 *
 * @link      http://github.com/zendframework/zf2 for the canonical source repository
 * @copyright Copyright (c) 2005-2013 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';
    }
}