Ejemplo n.º 1
0
 public function __construct()
 {
     // call parent constructor
     parent::__construct();
     // define this class specific properties
     $this->pkey = "sessionid";
     $this->table_name = "sys_session";
     $this->table_fields = array("sessionid" => "", "userid" => "", "token" => "", "ipaddress" => "", "useragent" => "", "entrytime" => "");
 }
Ejemplo n.º 2
0
 public function __construct()
 {
     // call parent constructor
     parent::__construct();
     // define this class specific properties
     $this->pkey = "fileid";
     $this->table_name = "sys_file";
     $this->table_fields = array("fileid" => "", "srctable" => "", "srcid" => "", "location" => "", "name" => "", "description" => "", "mime" => "", "entrytime" => "", "entryuser" => "", "isdeleted" => 0);
 }
Ejemplo n.º 3
0
 public function __construct()
 {
     // call parent constructor
     parent::__construct();
     // define this class specific properties
     $this->pkey = "itemid";
     $this->table_name = "todo_item";
     $this->table_fields = array("itemid" => "", "description" => "", "isfinish" => "");
 }
Ejemplo n.º 4
0
 public function __construct()
 {
     // call parent constructor
     parent::__construct();
     // define this class specific properties
     $this->pkey = "usergroupid";
     $this->table_name = "sys_usergroup";
     $this->table_fields = array("usergroupid" => "", "name" => "", "description" => "", "level" => "", "isdisplayed" => "", "isallowregistration" => "");
 }
Ejemplo n.º 5
0
 public function __construct()
 {
     // call parent constructor
     parent::__construct();
     // define this class specific properties
     $this->pkey = "userid";
     $this->table_name = "sys_user";
     $this->table_fields = array("userid" => "", "username" => "", "password" => "", "name" => "", "address" => "", "email" => "", "phone" => "", "pekerjaan" => "", "jabatan" => "", "rt" => "", "rw" => "", "kodepos" => "", "kewarganegaraan" => "", "wilayahid" => "", "teleponrumah" => "", "usergroupid" => "", "isenabled" => "");
     $this->view_name = "view_sys_user";
     $this->view_fields = array_merge($this->table_fields, array("usergroupname" => "", "userlevel" => "", "isdisplayed" => "", "isallowregistration" => "", "isloggedin" => ""));
 }