123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- <?php
- defined('BASEPATH') OR exit('No direct script access allowed');
- class CI_Lang {
-
- public $language = array();
-
- public $is_loaded = array();
-
- public function __construct()
- {
- log_message('info', 'Language Class Initialized');
- }
-
-
- public function load($langfile, $idiom = '', $return = FALSE, $add_suffix = TRUE, $alt_path = '')
- {
- if (is_array($langfile))
- {
- foreach ($langfile as $value)
- {
- $this->load($value, $idiom, $return, $add_suffix, $alt_path);
- }
- return;
- }
- $langfile = str_replace('.php', '', $langfile);
- if ($add_suffix === TRUE)
- {
- $langfile = preg_replace('/_lang$/', '', $langfile).'_lang';
- }
- $langfile .= '.php';
- if (empty($idiom) OR ! preg_match('/^[a-z_-]+$/i', $idiom))
- {
- $config =& get_config();
- $idiom = empty($config['language']) ? 'english' : $config['language'];
- }
- if ($return === FALSE && isset($this->is_loaded[$langfile]) && $this->is_loaded[$langfile] === $idiom)
- {
- return;
- }
-
- $basepath = BASEPATH.'language/'.$idiom.'/'.$langfile;
- if (($found = file_exists($basepath)) === TRUE)
- {
- include($basepath);
- }
-
- if ($alt_path !== '')
- {
- $alt_path .= 'language/'.$idiom.'/'.$langfile;
- if (file_exists($alt_path))
- {
- include($alt_path);
- $found = TRUE;
- }
- }
- else
- {
- foreach (get_instance()->load->get_package_paths(TRUE) as $package_path)
- {
- $package_path .= 'language/'.$idiom.'/'.$langfile;
- if ($basepath !== $package_path && file_exists($package_path))
- {
- include($package_path);
- $found = TRUE;
- break;
- }
- }
- }
- if ($found !== TRUE)
- {
- show_error('Unable to load the requested language file: language/'.$idiom.'/'.$langfile);
- }
- if ( ! isset($lang) OR ! is_array($lang))
- {
- log_message('error', 'Language file contains no data: language/'.$idiom.'/'.$langfile);
- if ($return === TRUE)
- {
- return array();
- }
- return;
- }
- if ($return === TRUE)
- {
- return $lang;
- }
- $this->is_loaded[$langfile] = $idiom;
- $this->language = array_merge($this->language, $lang);
- log_message('info', 'Language file loaded: language/'.$idiom.'/'.$langfile);
- return TRUE;
- }
-
-
- public function line($line, $log_errors = TRUE)
- {
- $value = isset($this->language[$line]) ? $this->language[$line] : FALSE;
-
- if ($value === FALSE && $log_errors === TRUE)
- {
- log_message('error', 'Could not find the language line "'.$line.'"');
- }
- return $value;
- }
- }
|