Beispiel #1
0
 public function ControlAccount($codeIgniterDb = null)
 {
     $data = array('name' => '', 'email' => '', 'password' => '');
     parent::Account($codeIgniterDb, $data);
     $this->table = 'admins';
     $this->key = 'email';
 }
Beispiel #2
0
 public function User($codeIgniterDb = null)
 {
     $data = array('UID' => '', 'name' => '', 'subject' => '', 'institution' => '', 'password' => '', 'accountActive' => '', 'type' => '', 'fbEmail' => '', 'fbProfilePic' => '');
     parent::Account($codeIgniterDb, $data);
     $this->table = 'users';
     $this->key = 'UID';
 }
Beispiel #3
0
 function Marker($ciDB = null)
 {
     $data = array('name' => '', 'username' => '', 'email' => '', 'subject' => '', 'institution' => '', 'password' => '', 'status' => '', 'phdStatus' => '', 'studentNum' => '');
     parent::Account($ciDB, $data);
     $this->table = 'markers';
     $this->key = 'email';
 }
 function ImportAccount()
 {
     parent::Account();
 }
 function AccountsListView()
 {
     parent::Account();
 }