<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
/**
* ConCentric
*
* @package ConCentric
* @author Leane Verhulst
* @copyright Copyright (c) 2008
* @license http://www.gnu.org/licenses/gpl.html
*/
// ---------------------------------------------------------------------------
/**
* ConCentric
*
* This is the main file that does all are work for us. It controles all user
* authentication and user functions. It also pulls together all parts of the
* ConCentric system, including site settings, asset management, flashstatus
* message system, user email module and site maintance control.
*
* Please autoload this library in the CI autoload feature
*
* @package ConCentric
* @subpackage Libraries
*/
define('CC_VERSION','1.0.0');
class ConCentric
{
function ConCentric()
{
// Get CI Instance
$this->CI = &get_instance();
// Load base files
$this->CI->load->config('concentric'); // Load main config file
//$this->CI->lang->load('concentric'); // Load main language file
// Load site wide modules
// Load programming settings module
$this->CI->load->module_model('ccsettings','ccsettings_model','ccsettings');
log_message('debug','ConCentric Class Initialized');
}
}
/* End of file ConCentric.php */
/* Location: ./system/application/libraries/ConCentric.php */