Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16766 | Ir a la última revisión | | Ultima modificación | Ver Log |

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