Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
4376 nelberth 1
<?php
2
declare(strict_types=1);
3
 
4
namespace LeadersLinked\Controller;
5
 
6
use Laminas\Authentication\AuthenticationService;
7
use Laminas\Authentication\Result as AuthResult;
8
use Laminas\Db\Adapter\AdapterInterface;
9
use Laminas\Cache\Storage\Adapter\AbstractAdapter;
10
use Laminas\Mvc\Controller\AbstractActionController;
11
use Laminas\Mvc\I18n\Translator;
12
use Laminas\Log\LoggerInterface;
13
use Laminas\View\Model\ViewModel;
14
use Laminas\View\Model\JsonModel;
15
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
16
 
4378 nelberth 17
class HighPerformanceTeamsController extends AbstractActionController
4376 nelberth 18
{
19
    /**
20
     *
21
     * @var AdapterInterface
22
     */
23
    private $adapter;
24
 
25
 
26
    /**
27
     *
28
     * @var AbstractAdapter
29
     */
30
    private $cache;
31
 
32
    /**
33
     *
34
     * @var  LoggerInterface
35
     */
36
    private $logger;
37
 
38
    /**
39
     *
40
     * @var array
41
     */
42
    private $config;
43
 
44
 
45
 
46
    /**
47
     *
48
     * @param AdapterInterface $adapter
49
     * @param AbstractAdapter $cache
50
     * @param LoggerInterface $logger
51
     * @param array $config
52
     */
53
    public function __construct($adapter, $cache , $logger, $config)
54
    {
55
        $this->adapter      = $adapter;
56
        $this->cache        = $cache;
57
        $this->logger       = $logger;
58
        $this->config       = $config;
59
 
60
 
61
    }
62
 
63
    public function indexAction()
64
    {
65
        $request = $this->getRequest();
66
 
67
        $request = $this->getRequest();
68
        if($request->isGet()) {
69
 
70
            $this->layout()->setTemplate('layout/layout-backend');
71
            $viewModel = new ViewModel();
72
            $viewModel->setTemplate('leaders-linked/high-performance-teams/index.phtml');
73
            return $viewModel ;
74
 
75
 
76
        } else {
77
            return new JsonModel([
78
                'success' => false,
79
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
80
            ]);;
81
        }
82
    }
83
}