コード例 #1
0
ファイル: Post.php プロジェクト: sagarscuelogic/MyBlog
 /**
  * Sets up column and relationship lists
  */
 public function __construct()
 {
     parent::init();
     $this->setColumnsList(array('id' => 'Id', 'title' => 'Title', 'content' => 'Content', 'created_on' => 'CreatedOn', 'created_by' => 'CreatedBy', 'updated_on' => 'UpdatedOn', 'updated_by' => 'UpdatedBy'));
     $this->setParentList(array());
     $this->setDependentList(array());
 }
コード例 #2
0
ファイル: User.php プロジェクト: sagarscuelogic/MyBlog
 /**
  * Sets up column and relationship lists
  */
 public function __construct()
 {
     parent::init();
     $this->setColumnsList(array('id' => 'Id', 'role' => 'Role', 'name' => 'Name', 'email' => 'Email', 'password' => 'Password', 'created_on' => 'CreatedOn', 'created_by' => 'CreatedBy', 'updated_on' => 'UpdatedOn', 'updated_by' => 'UpdatedBy'));
     $this->setParentList(array());
     $this->setDependentList(array());
 }