예제 #1
0
파일: Pageadmin.php 프로젝트: haaseit/hcsf
 /**
  * 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();
 }
예제 #2
0
파일: Base.php 프로젝트: haaseit/hcsf
 /**
  * Base constructor.
  * @param ServiceManager $serviceManager
  */
 public function __construct(ServiceManager $serviceManager)
 {
     parent::__construct($serviceManager);
     $this->requireModuleCustomer = true;
 }
예제 #3
0
파일: DBStatus.php 프로젝트: haaseit/hcsf
 /**
  * DBStatus constructor.
  * @param ServiceManager $serviceManager
  */
 public function __construct(ServiceManager $serviceManager)
 {
     parent::__construct($serviceManager);
     $this->db = $serviceManager->get('db');
     $this->twig = $serviceManager->get('twig');
 }
예제 #4
0
 public function __construct(ServiceManager $serviceManager)
 {
     parent::__construct($serviceManager);
     $this->textcats = $serviceManager->get('textcats');
 }
예제 #5
0
파일: Index.php 프로젝트: haaseit/hcsf
 /**
  * Index constructor.
  * @param ServiceManager $serviceManager
  */
 public function __construct(ServiceManager $serviceManager)
 {
     parent::__construct($serviceManager);
     $this->requireAdminAuthAdminHome = true;
 }