APPPATH/third_party/MX/Lang.php [ 38 ]
33 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
34 * THE SOFTWARE.
35 **/
36 class MX_Lang extends CI_Lang
37 {
38 public function load($langfile, $lang = '', $return = FALSE, $add_suffix = TRUE, $alt_path = '', $_module = '') {
39
40 if (is_array($langfile)) {
41 foreach($langfile as $_lang) $this->load($_lang);
42 return $this->language;
43 }
-
APPPATH/third_party/MX/Modules.php [ 119 ] » MY_Exceptions::error_handler()
114 /* don't autoload CI_ prefixed classes or those using the config subclass_prefix */ 115 if (strstr($class, 'CI_') OR strstr($class, config_item('subclass_prefix'))) return; 116 117 /* autoload Modular Extensions MX core classes */ 118 if (strstr($class, 'MX_') AND is_file($location = dirname(__FILE__).'/'.substr($class, 3).EXT)) { 119 include_once $location; 120 return; 121 } 122 123 /* autoload core classes */ 124 if(is_file($location = APPPATH.'core/'.$class.EXT)) {
-
APPPATH/third_party/MX/Modules.php [ 119 ] » include_once()
114 /* don't autoload CI_ prefixed classes or those using the config subclass_prefix */ 115 if (strstr($class, 'CI_') OR strstr($class, config_item('subclass_prefix'))) return; 116 117 /* autoload Modular Extensions MX core classes */ 118 if (strstr($class, 'MX_') AND is_file($location = dirname(__FILE__).'/'.substr($class, 3).EXT)) { 119 include_once $location; 120 return; 121 } 122 123 /* autoload core classes */ 124 if(is_file($location = APPPATH.'core/'.$class.EXT)) {
-
{PHP internal call} » Modules::autoload()
-
APPPATH/core/MY_Lang.php [ 11 ] » spl_autoload_call()
6 * @author vee w. 7 * @license http://www.opensource.org/licenses/GPL-3.0 8 * 9 */ 10 11 class MY_Lang extends MX_Lang { 12 13 public $current_lang; 14 public $use_default = false; 15 public $check_lang_segment; 16
-
FCPATH/system/core/Common.php [ 159 ] » require(arguments)
0
/home/udscoth/domains/uds.co.th/public_html/thiptanaporn/application/core/MY_Lang.php
154 { 155 $name = config_item('subclass_prefix').$class; 156 157 if (class_exists($name) === FALSE) 158 { 159 require(APPPATH.$directory.'/'.config_item('subclass_prefix').$class.'.php'); 160 } 161 } 162 163 // Did we find the class? 164 if ($name === FALSE)
-
FCPATH/system/core/CodeIgniter.php [ 220 ] » load_class()
215 /* 216 * ------------------------------------------------------ 217 * Load the Language class 218 * ------------------------------------------------------ 219 */ 220 $LANG =& load_class('Lang', 'core'); 221 222 /* 223 * ------------------------------------------------------ 224 * Load the app controller and local controller 225 * ------------------------------------------------------
-
FCPATH/index.php [ 217 ] » require_once(arguments)
0
/home/udscoth/domains/uds.co.th/public_html/thiptanaporn/system/core/CodeIgniter.php
212 * 213 * And away we go... 214 * 215 */ 216 217 require_once BASEPATH.'core/CodeIgniter.php'; 218 219 /* End of file index.php */ 220 /* Location: ./index.php */