Subversion Repositories Applications.papyrus

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2005 Aurelien 1
<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
2
/**
3
 * CodeIgniter
4
 *
5
 * An open source application development framework for PHP 4.3.2 or newer
6
 *
7
 * @package		CodeIgniter
8
 * @author		ExpressionEngine Dev Team
9
 * @copyright	Copyright (c) 2008, EllisLab, Inc.
10
 * @license		http://codeigniter.com/user_guide/license.html
11
 * @link		http://codeigniter.com
12
 * @since		Version 1.3
13
 * @filesource
14
 */
15
16
17
// ------------------------------------------------------------------------
18
19
/**
20
 * CI_BASE - For PHP 5
21
 *
22
 * This file contains some code used only when CodeIgniter is being
23
 * run under PHP 5.  It allows us to manage the CI super object more
24
 * gracefully than what is possible with PHP 4.
25
 *
26
 * @package		CodeIgniter
27
 * @subpackage	codeigniter
28
 * @category	front-controller
29
 * @author		ExpressionEngine Dev Team
30
 * @link		http://codeigniter.com/user_guide/
31
 */
32
33
class CI_Base {
34
35
	private static $instance;
36
37
	public function CI_Base()
38
	{
39
		self::$instance =& $this;
40
	}
41
42
	public static function &get_instance()
43
	{
44
		return self::$instance;
45
	}
46
}
47
48
function &get_instance()
49
{
50
	return CI_Base::get_instance();
51
}
52
53
54
55
/* End of file Base5.php */
56
/* Location: ./system/codeigniter/Base5.php */