Exemple #1
0
 /**
  * Constructor method
  * */
 public function __construct()
 {
     parent::__construct('tractor');
 }
Exemple #2
0
 /**
  * Constructor method
  * */
 public function __construct()
 {
     parent::__construct('ratings');
 }
Exemple #3
0
 /**
  * Constructor method
  * */
 public function __construct()
 {
     parent::__construct('languages');
 }
Exemple #4
0
 /**
  * Constructor witch will get all bootstrap functions from VS_Model
  * Set table name in constructor method
  * */
 public function __construct()
 {
     parent::__construct('users');
 }
Exemple #5
0
 public function __construct()
 {
     parent::__construct('deals');
 }
 /**
  * Constructor method
  * */
 public function __construct()
 {
     parent::__construct('phone_numbers');
 }
Exemple #7
0
 /**
  * Constructor method
  * @permissions can passe table name for parent Class
  * */
 public function __construct()
 {
     parent::__construct('users');
     $this->set_validation_prototype(['username' => 'trim|required|max_length[50]|min_length[6]|differs[password]', 'password' => 'trim|required|max_length[50]|min_length[6]|matches[confirm]', 'confirm' => 'matches[password]', 'email' => 'trim|required|max_length[50]|valid_email']);
 }
Exemple #8
0
 /**
  * Constructor method
  * */
 public function __construct()
 {
     parent::__construct('cargo');
 }