Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6749 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6749 Rev 6849
Línea 3... Línea 3...
3
declare(strict_types=1);
3
declare(strict_types=1);
Línea 4... Línea 4...
4
 
4
 
Línea 5... Línea 5...
5
namespace LeadersLinked\Controller;
5
namespace LeadersLinked\Controller;
6
 
-
 
-
 
6
 
7
use Laminas\Db\Adapter\AdapterInterface;
7
use Laminas\Db\Adapter\AdapterInterface;
8
use LeadersLinked\Cache\CacheInterface;
8
 
9
use Laminas\Mvc\Controller\AbstractActionController;
9
use Laminas\Mvc\Controller\AbstractActionController;
10
use Laminas\Log\LoggerInterface;
10
use Laminas\Log\LoggerInterface;
11
use Laminas\View\Model\JsonModel;
11
use Laminas\View\Model\JsonModel;
Línea 46... Línea 46...
46
     */
46
     */
47
    private $adapter;
47
    private $adapter;
Línea 48... Línea 48...
48
 
48
 
49
    /**
49
    /**
50
     *
-
 
51
     * @var CacheInterface
-
 
52
     */
-
 
53
    private $cache;
-
 
54
 
-
 
55
    /**
-
 
56
     *
50
     *
57
     * @var LoggerInterface
51
     * @var LoggerInterface
58
     */
52
     */
Línea 59... Línea 53...
59
    private $logger;
53
    private $logger;
Línea 65... Línea 59...
65
    private $config;
59
    private $config;
Línea 66... Línea 60...
66
 
60
 
67
    /**
61
    /**
68
     *
62
     *
69
     * @param AdapterInterface $adapter
-
 
70
     * @param CacheInterface $cache
63
     * @param AdapterInterface $adapter
71
     * @param LoggerInterface $logger
64
     * @param LoggerInterface $logger
72
     * @param array $config
65
     * @param array $config
73
     */
66
     */
74
    public function __construct($adapter, $cache, $logger, $config)
67
    public function __construct($adapter, $logger, $config)
75
    {
68
    {
76
        $this->adapter  = $adapter;
-
 
77
        $this->cache    = $cache;
69
        $this->adapter  = $adapter;
78
        $this->logger   = $logger;
70
        $this->logger   = $logger;
79
        $this->config   = $config;
71
        $this->config   = $config;
Línea 80... Línea 72...
80
    }
72
    }
Línea 2904... Línea 2896...
2904
 
2896
 
2905
                $dtEnd = \DateTime::createFromFormat('Y-m-d H:i:s', $dataPost['date'] . ' ' . $dataPost['time']);
2897
                $dtEnd = \DateTime::createFromFormat('Y-m-d H:i:s', $dataPost['date'] . ' ' . $dataPost['time']);
Línea 2906... Línea 2898...
2906
                $dtEnd->add(new \DateInterval('PT' . $dataPost['duration'] . 'M'));
2898
                $dtEnd->add(new \DateInterval('PT' . $dataPost['duration'] . 'M'));
2907
 
2899
 
Línea 2908... Línea 2900...
2908
                $start_time = $dtStart->format('Y-m-d\TH:i:s');
2900
                $start_time = $dtStart->format('Y-m-d\TH:i:s');
2909
                $zoom = new Zoom($this->adapter, $this->config, $this->cache);
2901
                $zoom = new Zoom($this->adapter, $this->config);
2910
 
2902
 
2911
                $response =  $zoom->getOAuthAccessToken();
2903
                $response =  $zoom->getOAuthAccessToken();