예제 #1
0
파일: Itemadmin.php 프로젝트: haaseit/hcsf
 /**
  * Itemadmin constructor.
  * @param ServiceManager $serviceManager
  */
 public function __construct(ServiceManager $serviceManager)
 {
     parent::__construct($serviceManager);
     $this->db = $serviceManager->get('db');
     $this->request = $serviceManager->get('request');
     $this->get = $this->request->getQueryParams();
     $this->post = $this->request->getParsedBody();
 }
예제 #2
0
 /**
  * Itemgroupadmin constructor.
  * @param ServiceManager $serviceManager
  */
 public function __construct(ServiceManager $serviceManager)
 {
     parent::__construct($serviceManager);
     $this->db = $serviceManager->get('db');
 }