예제 #1
0
파일: model.php 프로젝트: johnulist/library
 /**
  * __construct - Include database object if defined
  */
 public function __construct()
 {
     $this->db = Registry::get('db');
 }
예제 #2
0
 /**
  * __construct - Required
  */
 public function __construct()
 {
     $this->segments = Registry::get('segments');
     $this->view = Registry::get('view');
     $this->model = Registry::get('model');
 }