summaryrefslogtreecommitdiffstats
path: root/system/init/init_calendar.php
blob: 390b44007f67208b631821cd752e7686ea52d97b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php  if (!defined('BASEPATH')) exit('No direct script access allowed');

/**
 * Loads and instantiates calendar class
 *
 * @access	private called by the app controller
 */	

if ( ! class_exists('CI_Calendar'))
{
	require_once(BASEPATH.'libraries/Calendar'.EXT);
}

$obj =& get_instance();
$obj->calendar = new CI_Calendar();
$obj->ci_is_loaded[] = 'calendar';

?>