Welcome Guest, Not a member yet? Register   Sign In
Change language in config.php dynamic [RESOLVED]
#15

[eluser]mick_sp[/eluser]
I've been trying to get this to work, but it didn't. Of course extending the core Language-class is de cleanest solution, but when i didn't get that to work (i think there's some $this/$CI mixup in there somewhere) i just added an extra parameter to the Language->load method (i, know, i know, never change the core files) like so:
Code:
function load($langfile = '', $idiom = '', $return = FALSE, $force=false) {    
  $langfile = str_replace(EXT, '', str_replace('_lang.', '', $langfile)).'_lang'.EXT;
    if(!$force){
      if (in_array($langfile, $this->is_loaded, TRUE)){
        return;
      }        
    }
    ...
    ... rest of the method ...
}
I'd like a cleaner way of doing this, in fact i propose to do something like this in the future core files. I think its a bug that the class thinks the file is loaded when in fact it is loaded in a different language. (if there's one thing a language class should do, that would be knowing which language is loaded, not just which file Smile )

Michaƫl


Messages In This Thread
Change language in config.php dynamic [RESOLVED] - by El Forum - 11-01-2007, 12:40 PM
Change language in config.php dynamic [RESOLVED] - by El Forum - 11-01-2007, 07:54 PM
Change language in config.php dynamic [RESOLVED] - by El Forum - 11-02-2007, 03:26 AM
Change language in config.php dynamic [RESOLVED] - by El Forum - 11-02-2007, 04:21 AM
Change language in config.php dynamic [RESOLVED] - by El Forum - 11-02-2007, 08:47 AM
Change language in config.php dynamic [RESOLVED] - by El Forum - 11-02-2007, 09:37 AM
Change language in config.php dynamic [RESOLVED] - by El Forum - 11-05-2007, 04:29 AM
Change language in config.php dynamic [RESOLVED] - by El Forum - 11-05-2007, 04:43 AM
Change language in config.php dynamic [RESOLVED] - by El Forum - 11-05-2007, 04:58 AM
Change language in config.php dynamic [RESOLVED] - by El Forum - 11-05-2007, 05:19 AM
Change language in config.php dynamic [RESOLVED] - by El Forum - 11-05-2007, 06:05 AM
Change language in config.php dynamic [RESOLVED] - by El Forum - 11-05-2007, 06:52 AM
Change language in config.php dynamic [RESOLVED] - by El Forum - 11-05-2007, 08:06 AM
Change language in config.php dynamic [RESOLVED] - by El Forum - 11-05-2007, 12:43 PM
Change language in config.php dynamic [RESOLVED] - by El Forum - 12-25-2007, 01:59 PM
Change language in config.php dynamic [RESOLVED] - by El Forum - 01-16-2008, 04:34 AM
Change language in config.php dynamic [RESOLVED] - by El Forum - 12-29-2010, 10:46 AM
Change language in config.php dynamic [RESOLVED] - by El Forum - 01-21-2011, 05:22 AM
Change language in config.php dynamic [RESOLVED] - by El Forum - 11-22-2012, 02:40 PM



Theme © iAndrew 2016 - Forum software by © MyBB