<?php /** * Zend Framework (http://framework.zend.com/) * * @link http://github.com/zendframework/zend-log for the canonical source repository * @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ namespace Zend\Log; use Interop\Container\ContainerInterface; use Zend\ServiceManager\Config; use Zend\ServiceManager\FactoryInterface; use Zend\ServiceManager\ServiceLocatorInterface; class WriterPluginManagerFactory implements FactoryInterface { /** * zend-servicemanager v2 support for invocation options. * * @param array */ protected $creationOptions; /** * {@inheritDoc} * * @return WriterPluginManager */ public function __invoke(ContainerInterface $container, $name, array $options = null) { $pluginManager = new WriterPluginManager($container, $options ?: []); // If this is in a zend-mvc application, the ServiceListener will inject // merged configuration during bootstrap. if ($container->has('ServiceListener')) { return $pluginManager; } // If we do not have a config service, nothing more to do if (! $container->has('config')) { return $pluginManager; } $config = $container->get('config'); // If we do not have log_writers configuration, nothing more to do if (! isset($config['log_writers']) || ! is_array($config['log_writers'])) { return $pluginManager; } // Wire service configuration for log_writers (new Config($config['log_writers']))->configureServiceManager($pluginManager); return $pluginManager; } /** * {@inheritDoc} * * @return WriterPluginManager */ public function createService(ServiceLocatorInterface $container, $name = null, $requestedName = null) { return $this($container, $requestedName ?: WriterPluginManager::class, $this->creationOptions); } /** * zend-servicemanager v2 support for invocation options. * * @param array $options * @return void */ public function setCreationOptions(array $options) { $this->creationOptions = $options; } }