mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
55 lines
995 B
PHP
55 lines
995 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($secretary) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function exists($secretary) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function insert($secretary) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function update($secretary) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function find_record_id($secretary) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function validate($secretary) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function delete($secretary) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function get_row($secretary_id) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function get_value($field_name, $secretary_id) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function get_batch($where_clause = '') {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
/* End of file secretaries_model.php */
|
||
|
/* Location: ./application/models/secretaries_model.php */
|