<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
/**
* MODULE NAME : Colors_model.php
*
* DESCRIPTION : colors model
*
* MODIFICATION HISTORY
* V1.0 2008-10-31 11:47 PM - Leane Verhulst - Created
*
* @package ConCentric
* @subpackage colors model component Class
* @author Leane Verhulst
* @copyright Copyright (c) 2008
* @license http://www.gnu.org/licenses/gpl.html
*/
class Colors_model extends base_model
{
function Colors_model()
{
parent::Base_model();
$this->_TABLES = array('colors' => $this->config->item('concentric_table_prefix') . 'colors');
// Cache to store already fetched items
$this->_CACHE = array();
}
}
/* End of file colors_model.php */
/* Location: ./system/application/models/colors_model.php */