コード例 #1
0
ファイル: Monkeys.class.php プロジェクト: joedulin/framework
 public function __construct($opts = array())
 {
     parent::__construct($opts);
     $this->table = 'monkeys';
     $this->columns = array('id', 'name', 'poops_given', 'create_dt', 'modify_dt');
 }
コード例 #2
0
ファイル: Users.class.php プロジェクト: joedulin/framework
 public function __construct($opts = array())
 {
     parent::__construct($opts);
     $this->table = 'users';
     $this->columns = array('id', 'username', 'password', 'create_dt', 'modify_dt');
 }