Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
13675 nelberth 1
<?php
2
/**
3
 * Factory para el controlador del dashboard
4
 */
5
declare(strict_types=1);
6
 
7
namespace LeadersLinked\Factory\Controller;
8
 
15391 efrain 9
use Psr\Container\ContainerInterface;
13675 nelberth 10
use Laminas\ServiceManager\Factory\FactoryInterface;
13676 nelberth 11
use LeadersLinked\Controller\CommunicationInboxController;
16766 efrain 12
use LeadersLinked\Cache\CacheImpl;
13675 nelberth 13
 
13676 nelberth 14
class CommunicationInboxControllerFactory implements FactoryInterface
13675 nelberth 15
{
16
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
17
    {
18
 
19
        $db         = $container->get('leaders-linked-db');
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
 
16766 efrain 28
 
16768 efrain 29
 
30
        return new CommunicationInboxController($db, $log,  $config);
13675 nelberth 31
    }
15391 efrain 32
}