mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 04:39:28 +00:00
4152a67d8f
- Removed method _isEntitled from DB_Model - Removed method isEntitled from DHC_Model
24 lines
501 B
PHP
24 lines
501 B
PHP
<?php
|
|
|
|
if (! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
class FHC_Model extends CI_Model
|
|
{
|
|
/**
|
|
* Standard constructor for all the models
|
|
* It loads the helper message to manage the values returned by methods
|
|
* It loads the permission library
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
// Load languages files
|
|
$this->lang->load('fhc_model');
|
|
$this->lang->load('fhcomplete');
|
|
|
|
// Load return message helper
|
|
$this->load->helper('message');
|
|
}
|
|
}
|