Proyectos de Subversion LeadersLinked - Backend

Rev

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

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