12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415 |
- <?php
- defined('BASEPATH') OR exit('No direct script access allowed');
- class CI_Loader {
-
-
- protected $_ci_ob_level;
-
- protected $_ci_view_paths = array(VIEWPATH => TRUE);
-
- protected $_ci_library_paths = array(APPPATH, BASEPATH);
-
- protected $_ci_model_paths = array(APPPATH);
-
- protected $_ci_helper_paths = array(APPPATH, BASEPATH);
-
- protected $_ci_cached_vars = array();
-
- protected $_ci_classes = array();
-
- protected $_ci_models = array();
-
- protected $_ci_helpers = array();
-
- protected $_ci_varmap = array(
- 'unit_test' => 'unit',
- 'user_agent' => 'agent'
- );
-
-
- public function __construct()
- {
- $this->_ci_ob_level = ob_get_level();
- $this->_ci_classes =& is_loaded();
- log_message('info', 'Loader Class Initialized');
- }
-
-
- public function initialize()
- {
- $this->_ci_autoloader();
- }
-
-
- public function is_loaded($class)
- {
- return array_search(ucfirst($class), $this->_ci_classes, TRUE);
- }
-
-
- public function library($library, $params = NULL, $object_name = NULL)
- {
- if (empty($library))
- {
- return $this;
- }
- elseif (is_array($library))
- {
- foreach ($library as $key => $value)
- {
- if (is_int($key))
- {
- $this->library($value, $params);
- }
- else
- {
- $this->library($key, $params, $value);
- }
- }
- return $this;
- }
- if ($params !== NULL && ! is_array($params))
- {
- $params = NULL;
- }
- $this->_ci_load_library($library, $params, $object_name);
- return $this;
- }
-
-
- public function model($model, $name = '', $db_conn = FALSE)
- {
- if (empty($model))
- {
- return $this;
- }
- elseif (is_array($model))
- {
- foreach ($model as $key => $value)
- {
- is_int($key) ? $this->model($value, '', $db_conn) : $this->model($key, $value, $db_conn);
- }
- return $this;
- }
- $path = '';
-
- if (($last_slash = strrpos($model, '/')) !== FALSE)
- {
-
- $path = substr($model, 0, ++$last_slash);
-
- $model = substr($model, $last_slash);
- }
- if (empty($name))
- {
- $name = $model;
- }
- if (in_array($name, $this->_ci_models, TRUE))
- {
- return $this;
- }
- $CI =& get_instance();
- if (isset($CI->$name))
- {
- throw new RuntimeException('The model name you are loading is the name of a resource that is already being used: '.$name);
- }
- if ($db_conn !== FALSE && ! class_exists('CI_DB', FALSE))
- {
- if ($db_conn === TRUE)
- {
- $db_conn = '';
- }
- $this->database($db_conn, FALSE, TRUE);
- }
-
-
-
-
-
-
-
-
- if ( ! class_exists('CI_Model', FALSE))
- {
- $app_path = APPPATH.'core'.DIRECTORY_SEPARATOR;
- if (file_exists($app_path.'Model.php'))
- {
- require_once($app_path.'Model.php');
- if ( ! class_exists('CI_Model', FALSE))
- {
- throw new RuntimeException($app_path."Model.php exists, but doesn't declare class CI_Model");
- }
- log_message('info', 'CI_Model class loaded');
- }
- elseif ( ! class_exists('CI_Model', FALSE))
- {
- require_once(BASEPATH.'core'.DIRECTORY_SEPARATOR.'Model.php');
- }
- $class = config_item('subclass_prefix').'Model';
- if (file_exists($app_path.$class.'.php'))
- {
- require_once($app_path.$class.'.php');
- if ( ! class_exists($class, FALSE))
- {
- throw new RuntimeException($app_path.$class.".php exists, but doesn't declare class ".$class);
- }
- log_message('info', config_item('subclass_prefix').'Model class loaded');
- }
- }
- $model = ucfirst($model);
- if ( ! class_exists($model, FALSE))
- {
- foreach ($this->_ci_model_paths as $mod_path)
- {
- if ( ! file_exists($mod_path.'models/'.$path.$model.'.php'))
- {
- continue;
- }
- require_once($mod_path.'models/'.$path.$model.'.php');
- if ( ! class_exists($model, FALSE))
- {
- throw new RuntimeException($mod_path."models/".$path.$model.".php exists, but doesn't declare class ".$model);
- }
- break;
- }
- if ( ! class_exists($model, FALSE))
- {
- throw new RuntimeException('Unable to locate the model you have specified: '.$model);
- }
- }
- elseif ( ! is_subclass_of($model, 'CI_Model'))
- {
- throw new RuntimeException("Class ".$model." already exists and doesn't extend CI_Model");
- }
- $this->_ci_models[] = $name;
- $model = new $model();
- $CI->$name = $model;
- log_message('info', 'Model "'.get_class($model).'" initialized');
- return $this;
- }
-
-
- public function database($params = '', $return = FALSE, $query_builder = NULL)
- {
-
- $CI =& get_instance();
-
- if ($return === FALSE && $query_builder === NULL && isset($CI->db) && is_object($CI->db) && ! empty($CI->db->conn_id))
- {
- return FALSE;
- }
- require_once(BASEPATH.'database/DB.php');
- if ($return === TRUE)
- {
- return DB($params, $query_builder);
- }
-
-
- $CI->db = '';
-
- $CI->db =& DB($params, $query_builder);
- return $this;
- }
-
-
- public function dbutil($db = NULL, $return = FALSE)
- {
- $CI =& get_instance();
- if ( ! is_object($db) OR ! ($db instanceof CI_DB))
- {
- class_exists('CI_DB', FALSE) OR $this->database();
- $db =& $CI->db;
- }
- require_once(BASEPATH.'database/DB_utility.php');
- require_once(BASEPATH.'database/drivers/'.$db->dbdriver.'/'.$db->dbdriver.'_utility.php');
- $class = 'CI_DB_'.$db->dbdriver.'_utility';
- if ($return === TRUE)
- {
- return new $class($db);
- }
- $CI->dbutil = new $class($db);
- return $this;
- }
-
-
- public function dbforge($db = NULL, $return = FALSE)
- {
- $CI =& get_instance();
- if ( ! is_object($db) OR ! ($db instanceof CI_DB))
- {
- class_exists('CI_DB', FALSE) OR $this->database();
- $db =& $CI->db;
- }
- require_once(BASEPATH.'database/DB_forge.php');
- require_once(BASEPATH.'database/drivers/'.$db->dbdriver.'/'.$db->dbdriver.'_forge.php');
- if ( ! empty($db->subdriver))
- {
- $driver_path = BASEPATH.'database/drivers/'.$db->dbdriver.'/subdrivers/'.$db->dbdriver.'_'.$db->subdriver.'_forge.php';
- if (file_exists($driver_path))
- {
- require_once($driver_path);
- $class = 'CI_DB_'.$db->dbdriver.'_'.$db->subdriver.'_forge';
- }
- }
- else
- {
- $class = 'CI_DB_'.$db->dbdriver.'_forge';
- }
- if ($return === TRUE)
- {
- return new $class($db);
- }
- $CI->dbforge = new $class($db);
- return $this;
- }
-
-
- public function view($view, $vars = array(), $return = FALSE)
- {
- return $this->_ci_load(array('_ci_view' => $view, '_ci_vars' => $this->_ci_prepare_view_vars($vars), '_ci_return' => $return));
- }
-
-
- public function file($path, $return = FALSE)
- {
- return $this->_ci_load(array('_ci_path' => $path, '_ci_return' => $return));
- }
-
-
- public function vars($vars, $val = '')
- {
- $vars = is_string($vars)
- ? array($vars => $val)
- : $this->_ci_prepare_view_vars($vars);
- foreach ($vars as $key => $val)
- {
- $this->_ci_cached_vars[$key] = $val;
- }
- return $this;
- }
-
-
- public function clear_vars()
- {
- $this->_ci_cached_vars = array();
- return $this;
- }
-
-
- public function get_var($key)
- {
- return isset($this->_ci_cached_vars[$key]) ? $this->_ci_cached_vars[$key] : NULL;
- }
-
-
- public function get_vars()
- {
- return $this->_ci_cached_vars;
- }
-
-
- public function helper($helpers = array())
- {
- is_array($helpers) OR $helpers = array($helpers);
- foreach ($helpers as &$helper)
- {
- $filename = basename($helper);
- $filepath = ($filename === $helper) ? '' : substr($helper, 0, strlen($helper) - strlen($filename));
- $filename = strtolower(preg_replace('#(_helper)?(\.php)?$#i', '', $filename)).'_helper';
- $helper = $filepath.$filename;
- if (isset($this->_ci_helpers[$helper]))
- {
- continue;
- }
-
- $ext_helper = config_item('subclass_prefix').$filename;
- $ext_loaded = FALSE;
- foreach ($this->_ci_helper_paths as $path)
- {
- if (file_exists($path.'helpers/'.$ext_helper.'.php'))
- {
- include_once($path.'helpers/'.$ext_helper.'.php');
- $ext_loaded = TRUE;
- }
- }
-
- if ($ext_loaded === TRUE)
- {
- $base_helper = BASEPATH.'helpers/'.$helper.'.php';
- if ( ! file_exists($base_helper))
- {
- show_error('Unable to load the requested file: helpers/'.$helper.'.php');
- }
- include_once($base_helper);
- $this->_ci_helpers[$helper] = TRUE;
- log_message('info', 'Helper loaded: '.$helper);
- continue;
- }
-
- foreach ($this->_ci_helper_paths as $path)
- {
- if (file_exists($path.'helpers/'.$helper.'.php'))
- {
- include_once($path.'helpers/'.$helper.'.php');
- $this->_ci_helpers[$helper] = TRUE;
- log_message('info', 'Helper loaded: '.$helper);
- break;
- }
- }
-
- if ( ! isset($this->_ci_helpers[$helper]))
- {
- show_error('Unable to load the requested file: helpers/'.$helper.'.php');
- }
- }
- return $this;
- }
-
-
- public function helpers($helpers = array())
- {
- return $this->helper($helpers);
- }
-
-
- public function language($files, $lang = '')
- {
- get_instance()->lang->load($files, $lang);
- return $this;
- }
-
-
- public function config($file, $use_sections = FALSE, $fail_gracefully = FALSE)
- {
- return get_instance()->config->load($file, $use_sections, $fail_gracefully);
- }
-
-
- public function driver($library, $params = NULL, $object_name = NULL)
- {
- if (is_array($library))
- {
- foreach ($library as $key => $value)
- {
- if (is_int($key))
- {
- $this->driver($value, $params);
- }
- else
- {
- $this->driver($key, $params, $value);
- }
- }
- return $this;
- }
- elseif (empty($library))
- {
- return FALSE;
- }
- if ( ! class_exists('CI_Driver_Library', FALSE))
- {
-
- require BASEPATH.'libraries/Driver.php';
- }
-
-
- if ( ! strpos($library, '/'))
- {
- $library = ucfirst($library).'/'.$library;
- }
- return $this->library($library, $params, $object_name);
- }
-
-
- public function add_package_path($path, $view_cascade = TRUE)
- {
- $path = rtrim($path, '/').'/';
- array_unshift($this->_ci_library_paths, $path);
- array_unshift($this->_ci_model_paths, $path);
- array_unshift($this->_ci_helper_paths, $path);
- $this->_ci_view_paths = array($path.'views/' => $view_cascade) + $this->_ci_view_paths;
-
- $config =& $this->_ci_get_component('config');
- $config->_config_paths[] = $path;
- return $this;
- }
-
-
- public function get_package_paths($include_base = FALSE)
- {
- return ($include_base === TRUE) ? $this->_ci_library_paths : $this->_ci_model_paths;
- }
-
-
- public function remove_package_path($path = '')
- {
- $config =& $this->_ci_get_component('config');
- if ($path === '')
- {
- array_shift($this->_ci_library_paths);
- array_shift($this->_ci_model_paths);
- array_shift($this->_ci_helper_paths);
- array_shift($this->_ci_view_paths);
- array_pop($config->_config_paths);
- }
- else
- {
- $path = rtrim($path, '/').'/';
- foreach (array('_ci_library_paths', '_ci_model_paths', '_ci_helper_paths') as $var)
- {
- if (($key = array_search($path, $this->{$var})) !== FALSE)
- {
- unset($this->{$var}[$key]);
- }
- }
- if (isset($this->_ci_view_paths[$path.'views/']))
- {
- unset($this->_ci_view_paths[$path.'views/']);
- }
- if (($key = array_search($path, $config->_config_paths)) !== FALSE)
- {
- unset($config->_config_paths[$key]);
- }
- }
-
- $this->_ci_library_paths = array_unique(array_merge($this->_ci_library_paths, array(APPPATH, BASEPATH)));
- $this->_ci_helper_paths = array_unique(array_merge($this->_ci_helper_paths, array(APPPATH, BASEPATH)));
- $this->_ci_model_paths = array_unique(array_merge($this->_ci_model_paths, array(APPPATH)));
- $this->_ci_view_paths = array_merge($this->_ci_view_paths, array(APPPATH.'views/' => TRUE));
- $config->_config_paths = array_unique(array_merge($config->_config_paths, array(APPPATH)));
- return $this;
- }
-
-
- protected function _ci_load($_ci_data)
- {
-
- foreach (array('_ci_view', '_ci_vars', '_ci_path', '_ci_return') as $_ci_val)
- {
- $$_ci_val = isset($_ci_data[$_ci_val]) ? $_ci_data[$_ci_val] : FALSE;
- }
- $file_exists = FALSE;
-
- if (is_string($_ci_path) && $_ci_path !== '')
- {
- $_ci_x = explode('/', $_ci_path);
- $_ci_file = end($_ci_x);
- }
- else
- {
- $_ci_ext = pathinfo($_ci_view, PATHINFO_EXTENSION);
- $_ci_file = ($_ci_ext === '') ? $_ci_view.'.php' : $_ci_view;
- foreach ($this->_ci_view_paths as $_ci_view_file => $cascade)
- {
- if (file_exists($_ci_view_file.$_ci_file))
- {
- $_ci_path = $_ci_view_file.$_ci_file;
- $file_exists = TRUE;
- break;
- }
- if ( ! $cascade)
- {
- break;
- }
- }
- }
- if ( ! $file_exists && ! file_exists($_ci_path))
- {
- show_error('Unable to load the requested file: '.$_ci_file);
- }
-
-
- $_ci_CI =& get_instance();
- foreach (get_object_vars($_ci_CI) as $_ci_key => $_ci_var)
- {
- if ( ! isset($this->$_ci_key))
- {
- $this->$_ci_key =& $_ci_CI->$_ci_key;
- }
- }
-
- empty($_ci_vars) OR $this->_ci_cached_vars = array_merge($this->_ci_cached_vars, $_ci_vars);
- extract($this->_ci_cached_vars);
-
- ob_start();
-
-
-
- if ( ! is_php('5.4') && ! ini_get('short_open_tag') && config_item('rewrite_short_tags') === TRUE)
- {
- echo eval('?>'.preg_replace('/;*\s*\?>/', '; ?>', str_replace('<?=', '<?php echo ', file_get_contents($_ci_path))));
- }
- else
- {
- include($_ci_path);
- }
- log_message('info', 'File loaded: '.$_ci_path);
-
- if ($_ci_return === TRUE)
- {
- $buffer = ob_get_contents();
- @ob_end_clean();
- return $buffer;
- }
-
- if (ob_get_level() > $this->_ci_ob_level + 1)
- {
- ob_end_flush();
- }
- else
- {
- $_ci_CI->output->append_output(ob_get_contents());
- @ob_end_clean();
- }
- return $this;
- }
-
-
- protected function _ci_load_library($class, $params = NULL, $object_name = NULL)
- {
-
-
-
- $class = str_replace('.php', '', trim($class, '/'));
-
-
- if (($last_slash = strrpos($class, '/')) !== FALSE)
- {
-
- $subdir = substr($class, 0, ++$last_slash);
-
- $class = substr($class, $last_slash);
- }
- else
- {
- $subdir = '';
- }
- $class = ucfirst($class);
-
- if (file_exists(BASEPATH.'libraries/'.$subdir.$class.'.php'))
- {
- return $this->_ci_load_stock_library($class, $subdir, $params, $object_name);
- }
-
- if (class_exists($class, FALSE))
- {
- $property = $object_name;
- if (empty($property))
- {
- $property = strtolower($class);
- isset($this->_ci_varmap[$property]) && $property = $this->_ci_varmap[$property];
- }
- $CI =& get_instance();
- if (isset($CI->$property))
- {
- log_message('debug', $class.' class already loaded. Second attempt ignored.');
- return;
- }
- return $this->_ci_init_library($class, '', $params, $object_name);
- }
-
- foreach ($this->_ci_library_paths as $path)
- {
-
- if ($path === BASEPATH)
- {
- continue;
- }
- $filepath = $path.'libraries/'.$subdir.$class.'.php';
-
- if ( ! file_exists($filepath))
- {
- continue;
- }
- include_once($filepath);
- return $this->_ci_init_library($class, '', $params, $object_name);
- }
-
- if ($subdir === '')
- {
- return $this->_ci_load_library($class.'/'.$class, $params, $object_name);
- }
-
- log_message('error', 'Unable to load the requested class: '.$class);
- show_error('Unable to load the requested class: '.$class);
- }
-
-
- protected function _ci_load_stock_library($library_name, $file_path, $params, $object_name)
- {
- $prefix = 'CI_';
- if (class_exists($prefix.$library_name, FALSE))
- {
- if (class_exists(config_item('subclass_prefix').$library_name, FALSE))
- {
- $prefix = config_item('subclass_prefix');
- }
- $property = $object_name;
- if (empty($property))
- {
- $property = strtolower($library_name);
- isset($this->_ci_varmap[$property]) && $property = $this->_ci_varmap[$property];
- }
- $CI =& get_instance();
- if ( ! isset($CI->$property))
- {
- return $this->_ci_init_library($library_name, $prefix, $params, $object_name);
- }
- log_message('debug', $library_name.' class already loaded. Second attempt ignored.');
- return;
- }
- $paths = $this->_ci_library_paths;
- array_pop($paths);
- array_pop($paths);
- array_unshift($paths, APPPATH);
- foreach ($paths as $path)
- {
- if (file_exists($path = $path.'libraries/'.$file_path.$library_name.'.php'))
- {
-
- include_once($path);
- if (class_exists($prefix.$library_name, FALSE))
- {
- return $this->_ci_init_library($library_name, $prefix, $params, $object_name);
- }
- log_message('debug', $path.' exists, but does not declare '.$prefix.$library_name);
- }
- }
- include_once(BASEPATH.'libraries/'.$file_path.$library_name.'.php');
-
- $subclass = config_item('subclass_prefix').$library_name;
- foreach ($paths as $path)
- {
- if (file_exists($path = $path.'libraries/'.$file_path.$subclass.'.php'))
- {
- include_once($path);
- if (class_exists($subclass, FALSE))
- {
- $prefix = config_item('subclass_prefix');
- break;
- }
- log_message('debug', $path.' exists, but does not declare '.$subclass);
- }
- }
- return $this->_ci_init_library($library_name, $prefix, $params, $object_name);
- }
-
-
- protected function _ci_init_library($class, $prefix, $config = FALSE, $object_name = NULL)
- {
-
- if ($config === NULL)
- {
-
- $config_component = $this->_ci_get_component('config');
- if (is_array($config_component->_config_paths))
- {
- $found = FALSE;
- foreach ($config_component->_config_paths as $path)
- {
-
-
-
- if (file_exists($path.'config/'.strtolower($class).'.php'))
- {
- include($path.'config/'.strtolower($class).'.php');
- $found = TRUE;
- }
- elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php'))
- {
- include($path.'config/'.ucfirst(strtolower($class)).'.php');
- $found = TRUE;
- }
- if (file_exists($path.'config/'.ENVIRONMENT.'/'.strtolower($class).'.php'))
- {
- include($path.'config/'.ENVIRONMENT.'/'.strtolower($class).'.php');
- $found = TRUE;
- }
- elseif (file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php'))
- {
- include($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php');
- $found = TRUE;
- }
-
-
- if ($found === TRUE)
- {
- break;
- }
- }
- }
- }
- $class_name = $prefix.$class;
-
- if ( ! class_exists($class_name, FALSE))
- {
- log_message('error', 'Non-existent class: '.$class_name);
- show_error('Non-existent class: '.$class_name);
- }
-
-
- if (empty($object_name))
- {
- $object_name = strtolower($class);
- if (isset($this->_ci_varmap[$object_name]))
- {
- $object_name = $this->_ci_varmap[$object_name];
- }
- }
-
- $CI =& get_instance();
- if (isset($CI->$object_name))
- {
- if ($CI->$object_name instanceof $class_name)
- {
- log_message('debug', $class_name." has already been instantiated as '".$object_name."'. Second attempt aborted.");
- return;
- }
- show_error("Resource '".$object_name."' already exists and is not a ".$class_name." instance.");
- }
-
- $this->_ci_classes[$object_name] = $class;
-
- $CI->$object_name = isset($config)
- ? new $class_name($config)
- : new $class_name();
- }
-
-
- protected function _ci_autoloader()
- {
- if (file_exists(APPPATH.'config/autoload.php'))
- {
- include(APPPATH.'config/autoload.php');
- }
- if (file_exists(APPPATH.'config/'.ENVIRONMENT.'/autoload.php'))
- {
- include(APPPATH.'config/'.ENVIRONMENT.'/autoload.php');
- }
- if ( ! isset($autoload))
- {
- return;
- }
-
- if (isset($autoload['packages']))
- {
- foreach ($autoload['packages'] as $package_path)
- {
- $this->add_package_path($package_path);
- }
- }
-
- if (count($autoload['config']) > 0)
- {
- foreach ($autoload['config'] as $val)
- {
- $this->config($val);
- }
- }
-
- foreach (array('helper', 'language') as $type)
- {
- if (isset($autoload[$type]) && count($autoload[$type]) > 0)
- {
- $this->$type($autoload[$type]);
- }
- }
-
- if (isset($autoload['drivers']))
- {
- $this->driver($autoload['drivers']);
- }
-
- if (isset($autoload['libraries']) && count($autoload['libraries']) > 0)
- {
-
- if (in_array('database', $autoload['libraries']))
- {
- $this->database();
- $autoload['libraries'] = array_diff($autoload['libraries'], array('database'));
- }
-
- $this->library($autoload['libraries']);
- }
-
- if (isset($autoload['model']))
- {
- $this->model($autoload['model']);
- }
- }
-
-
- protected function _ci_prepare_view_vars($vars)
- {
- if ( ! is_array($vars))
- {
- $vars = is_object($vars)
- ? get_object_vars($vars)
- : array();
- }
- foreach (array_keys($vars) as $key)
- {
- if (strncmp($key, '_ci_', 4) === 0)
- {
- unset($vars[$key]);
- }
- }
- return $vars;
- }
-
-
- protected function &_ci_get_component($component)
- {
- $CI =& get_instance();
- return $CI->$component;
- }
- }
|