public function __construct()
 {
     parent::__construct();
     $this->moduleModel = $this->labModel->getChildModel('announcements');
     $this->map = array_merge($this->map, ['title' => 'title', 'date' => 'date', 'detail' => 'detail']);
 }
 public function __construct()
 {
     parent::__construct();
     $this->moduleModel = $this->labModel->getChildModel('recruits');
     $this->map = array_merge($this->map, array('type' => 'type', 'number' => 'number', 'researchArea' => 'researchArea', 'deadline' => 'deadline', 'brief' => 'brief', 'detail' => 'detail'));
 }
 public function __construct()
 {
     parent::__construct();
     $this->moduleModel = $this->labModel->getChildModel('experiments');
     $this->map = array_merge($this->map, array('title' => 'title', 'principal' => 'principal', 'contact' => 'contact', 'date' => 'date', 'scope' => 'scope', 'brief' => 'brief', 'detail' => 'detail'));
 }
 public function __construct()
 {
     parent::__construct();
     $this->moduleModel = $this->labModel->getChildModel('rules');
     $this->map = array_merge($this->map, array('title' => 'title', 'date' => 'date', 'detail' => 'detail'));
 }
 public function __construct()
 {
     parent::__construct();
     $this->moduleModel = $this->labModel->getChildModel('projects');
     $this->map = array_merge($this->map, array('name' => 'name', 'origin' => 'origin', 'participants' => 'participants', 'during' => 'during', 'state' => 'state', 'comment' => 'comment'));
 }
 public function __construct()
 {
     parent::__construct();
     $this->moduleModel = $this->labModel->getChildModel('equipments');
     $this->map = array_merge($this->map, array('name' => 'name', 'brand' => 'brand', 'model' => 'model', 'principal' => 'principal', 'contact' => 'contact', 'scope' => 'scope', 'picture' => 'picture', 'intro' => 'intro'));
 }