File: /home/slfopp7cb1df/public_html/conradinvestmentgroup.com/pm/app/Models/Expense_categories_model.php
<?php
namespace App\Models;
class Expense_categories_model extends Crud_model {
protected $table = null;
function __construct() {
$this->table = 'expense_categories';
parent::__construct($this->table);
}
function get_details($options = array()) {
$expense_categories_table = $this->db->prefixTable('expense_categories');
$where = "";
$id = $this->_get_clean_value($options, "id");
if ($id) {
$where = " AND $expense_categories_table.id=$id";
}
$sql = "SELECT $expense_categories_table.*
FROM $expense_categories_table
WHERE $expense_categories_table.deleted=0 $where";
return $this->db->query($sql);
}
}