Example #1
0
 /**
  * Pageadmin constructor.
  * @param ServiceManager $serviceManager
  */
 public function __construct(ServiceManager $serviceManager)
 {
     parent::__construct($serviceManager);
     /** @var \Zend\Diactoros\ServerRequest request */
     $this->request = $serviceManager->get('request');
     $this->post = $this->request->getParsedBody();
     $this->get = $this->request->getQueryParams();
 }
Example #2
0
 /**
  * Base constructor.
  * @param ServiceManager $serviceManager
  */
 public function __construct(ServiceManager $serviceManager)
 {
     parent::__construct($serviceManager);
     $this->requireModuleCustomer = true;
 }
Example #3
0
 /**
  * DBStatus constructor.
  * @param ServiceManager $serviceManager
  */
 public function __construct(ServiceManager $serviceManager)
 {
     parent::__construct($serviceManager);
     $this->db = $serviceManager->get('db');
     $this->twig = $serviceManager->get('twig');
 }
Example #4
0
 public function __construct(ServiceManager $serviceManager)
 {
     parent::__construct($serviceManager);
     $this->textcats = $serviceManager->get('textcats');
 }
Example #5
0
 /**
  * Index constructor.
  * @param ServiceManager $serviceManager
  */
 public function __construct(ServiceManager $serviceManager)
 {
     parent::__construct($serviceManager);
     $this->requireAdminAuthAdminHome = true;
 }