예제 #1
0
 public function __construct()
 {
     parent::__construct();
     self::$table = "users";
     $this->fields = ['_id' => 0, 'username' => null, 'email' => null, 'password' => null];
 }
예제 #2
0
 public function __construct()
 {
     parent::__construct();
 }
예제 #3
0
 public function __construct()
 {
     parent::__construct();
     self::$table = "photos";
     $this->fields = ['_id' => 0, 'title' => null, 'autor' => null, 'autorUser' => null, 'tryb' => 'public', 'photoPath' => null, 'smallPath' => null, 'bigPath' => null];
 }
예제 #4
0
 public function __construct()
 {
     parent::__construct();
     $this->setTable('NameTable');
 }