mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-22 08:17:58 -05:00
Tom git-svn-id: svn+ssh://jekkos@svn.code.sf.net/p/opensourcepos/code/@24 c3eb156b-1dc0-44e1-88ae-e38439141b53
27 lines
536 B
PHP
27 lines
536 B
PHP
<?php
|
|
class MY_Language extends CI_Language
|
|
{
|
|
function MY_Language()
|
|
{
|
|
parent::CI_Language();
|
|
}
|
|
|
|
function switch_to($idiom)
|
|
{
|
|
$CI =& get_instance();
|
|
if(is_string($idiom))
|
|
{
|
|
$CI->config->set_item('language',$idiom);
|
|
$loaded = $this->is_loaded;
|
|
$this->is_loaded = array();
|
|
|
|
foreach($loaded as $file)
|
|
{
|
|
$this->load(str_replace('_lang.php','',$file));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
?>
|