Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3671 | Rev 6849 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
272 geraldo 1
<?php
2
/**
3
 * Factory para el controlador del dashboard
4
 */
5
declare(strict_types=1);
6
 
7
namespace LeadersLinked\Factory\Controller;
8
 
3671 efrain 9
use Laminas\ServiceManager\Factory\FactoryInterface;
10
use LeadersLinked\Controller\SelfEvaluationController;
11
use Psr\Container\ContainerInterface;
6749 efrain 12
use LeadersLinked\Cache\CacheImpl;
272 geraldo 13
 
14
class SelfEvaluationControllerFactory implements FactoryInterface
15
{
16
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
17
    {
18
        $db         = $container->get('leaders-linked-db');
19
        $log        = $container->get('leaders-linked-log');
20
        $config     = $container->get('ServiceManager')->get('config');
21
 
22
        $config = array_filter($config, function($k) {
23
            return strpos($k, 'leaderslinked.') !== false;
24
        }, ARRAY_FILTER_USE_KEY);
25
 
6749 efrain 26
        $cache = CacheImpl::getInstance($config);
27
 
272 geraldo 28
        return new SelfEvaluationController($db, $cache, $log,  $config);
29
    }
30
}