コード例 #1
0
ファイル: User_Model.php プロジェクト: anhnt36/duan
 public function __construct()
 {
     parent::__construct();
     self::$_table = 'user';
     self::$field = array('name', 'password', 'email', 'avatar', 'activate', 'createdTime', 'updatedTime');
     $this->validate = new Validate_Library(self::$rules);
 }
コード例 #2
0
ファイル: Product_Model.php プロジェクト: anhnt36/duan
 public function __construct()
 {
     parent::__construct();
     self::$_table = 'product';
     self::$field = array('name', 'description', 'price', 'activate', 'createdTime', 'updatedTime');
     $this->validate = new Validate_Library(self::$rules);
 }