123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379 |
- <?php
- defined('BASEPATH') OR exit('No direct script access allowed');
- class CI_Config {
-
- public $config = array();
-
- public $is_loaded = array();
-
- public $_config_paths = array(APPPATH);
-
-
- public function __construct()
- {
- $this->config =& get_config();
-
- if (empty($this->config['base_url']))
- {
- if (isset($_SERVER['SERVER_ADDR']))
- {
- if (strpos($_SERVER['SERVER_ADDR'], ':') !== FALSE)
- {
- $server_addr = '['.$_SERVER['SERVER_ADDR'].']';
- }
- else
- {
- $server_addr = $_SERVER['SERVER_ADDR'];
- }
- $base_url = (is_https() ? 'https' : 'http').'://'.$server_addr
- .substr($_SERVER['SCRIPT_NAME'], 0, strpos($_SERVER['SCRIPT_NAME'], basename($_SERVER['SCRIPT_FILENAME'])));
- }
- else
- {
- $base_url = 'http://localhost/';
- }
- $this->set_item('base_url', $base_url);
- }
- log_message('info', 'Config Class Initialized');
- }
-
-
- public function load($file = '', $use_sections = FALSE, $fail_gracefully = FALSE)
- {
- $file = ($file === '') ? 'config' : str_replace('.php', '', $file);
- $loaded = FALSE;
- foreach ($this->_config_paths as $path)
- {
- foreach (array($file, ENVIRONMENT.DIRECTORY_SEPARATOR.$file) as $location)
- {
- $file_path = $path.'config/'.$location.'.php';
- if (in_array($file_path, $this->is_loaded, TRUE))
- {
- return TRUE;
- }
- if ( ! file_exists($file_path))
- {
- continue;
- }
- include($file_path);
- if ( ! isset($config) OR ! is_array($config))
- {
- if ($fail_gracefully === TRUE)
- {
- return FALSE;
- }
- show_error('Your '.$file_path.' file does not appear to contain a valid configuration array.');
- }
- if ($use_sections === TRUE)
- {
- $this->config[$file] = isset($this->config[$file])
- ? array_merge($this->config[$file], $config)
- : $config;
- }
- else
- {
- $this->config = array_merge($this->config, $config);
- }
- $this->is_loaded[] = $file_path;
- $config = NULL;
- $loaded = TRUE;
- log_message('debug', 'Config file loaded: '.$file_path);
- }
- }
- if ($loaded === TRUE)
- {
- return TRUE;
- }
- elseif ($fail_gracefully === TRUE)
- {
- return FALSE;
- }
- show_error('The configuration file '.$file.'.php does not exist.');
- }
-
-
- public function item($item, $index = '')
- {
- if ($index == '')
- {
- return isset($this->config[$item]) ? $this->config[$item] : NULL;
- }
- return isset($this->config[$index], $this->config[$index][$item]) ? $this->config[$index][$item] : NULL;
- }
-
-
- public function slash_item($item)
- {
- if ( ! isset($this->config[$item]))
- {
- return NULL;
- }
- elseif (trim($this->config[$item]) === '')
- {
- return '';
- }
- return rtrim($this->config[$item], '/').'/';
- }
-
-
- public function site_url($uri = '', $protocol = NULL)
- {
- $base_url = $this->slash_item('base_url');
- if (isset($protocol))
- {
-
- if ($protocol === '')
- {
- $base_url = substr($base_url, strpos($base_url, '//'));
- }
- else
- {
- $base_url = $protocol.substr($base_url, strpos($base_url, '://'));
- }
- }
- if (empty($uri))
- {
- return $base_url.$this->item('index_page');
- }
- $uri = $this->_uri_string($uri);
- if ($this->item('enable_query_strings') === FALSE)
- {
- $suffix = isset($this->config['url_suffix']) ? $this->config['url_suffix'] : '';
- if ($suffix !== '')
- {
- if (($offset = strpos($uri, '?')) !== FALSE)
- {
- $uri = substr($uri, 0, $offset).$suffix.substr($uri, $offset);
- }
- else
- {
- $uri .= $suffix;
- }
- }
- return $base_url.$this->slash_item('index_page').$uri;
- }
- elseif (strpos($uri, '?') === FALSE)
- {
- $uri = '?'.$uri;
- }
- return $base_url.$this->item('index_page').$uri;
- }
-
-
- public function base_url($uri = '', $protocol = NULL)
- {
- $base_url = $this->slash_item('base_url');
- if (isset($protocol))
- {
-
- if ($protocol === '')
- {
- $base_url = substr($base_url, strpos($base_url, '//'));
- }
- else
- {
- $base_url = $protocol.substr($base_url, strpos($base_url, '://'));
- }
- }
- return $base_url.$this->_uri_string($uri);
- }
-
-
- protected function _uri_string($uri)
- {
- if ($this->item('enable_query_strings') === FALSE)
- {
- is_array($uri) && $uri = implode('/', $uri);
- return ltrim($uri, '/');
- }
- elseif (is_array($uri))
- {
- return http_build_query($uri);
- }
- return $uri;
- }
-
-
- public function system_url()
- {
- $x = explode('/', preg_replace('|/*(.+?)/*$|', '\\1', BASEPATH));
- return $this->slash_item('base_url').end($x).'/';
- }
-
-
- public function set_item($item, $value)
- {
- $this->config[$item] = $value;
- }
- }
|