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