mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
55 lines
949 B
PHP
55 lines
949 B
PHP
|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed.');
|
||
|
|
||
|
class Admins_Model extends CI_Model {
|
||
|
/**
|
||
|
* Class Constructor
|
||
|
*/
|
||
|
public function __construct() {
|
||
|
parent::__construct();
|
||
|
}
|
||
|
|
||
|
public function add($admin) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function exists($admin) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function insert($admin) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function update($admin) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function find_record_id($admin) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function validate($admin) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function delete($admin) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function get_row($admin_id) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function get_value($field_name, $admin_id) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function get_batch($where_clause = '') {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
/* End of file admins_model.php */
|
||
|
/* Location: ./application/models/admins_model.php */
|