diff options
author | admin <devnull@localhost> | 2006-08-25 19:25:49 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-08-25 19:25:49 +0200 |
commit | b0dd10f8171945e0c1f3527dd1e9d18b043e01a7 (patch) | |
tree | c3583ba09e72217683c4304f4690df6ce39ba731 /system/init/init_parser.php |
Initial Import
Diffstat (limited to 'system/init/init_parser.php')
-rw-r--r-- | system/init/init_parser.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/system/init/init_parser.php b/system/init/init_parser.php new file mode 100644 index 000000000..17824b566 --- /dev/null +++ b/system/init/init_parser.php @@ -0,0 +1,19 @@ +<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); + +/** + * Loads and instantiates parser class + * + * @access private called by the app controller + */ + +if ( ! class_exists('CI_Parser')) +{ + require_once(BASEPATH.'libraries/Parser'.EXT); +} + +$obj =& get_instance(); +$obj->parser = new CI_Parser(); +$obj->ci_is_loaded[] = 'parser'; + + +?>
\ No newline at end of file |