| 6 locale.module | locale_inc_callback() |
Wrapper function to be able to set callbacks in locale.inc
2 calls to locale_inc_callback()
1 string reference to 'locale_inc_callback'
File
- modules/
locale/ locale.module, line 175 - Add language handling functionality and enables the translation of the user interface to languages other than English.
Code
function locale_inc_callback() {
$args = func_get_args();
$function = array_shift($args);
include_once './includes/locale.inc';
return call_user_func_array($function, $args);
}
Login or register to post comments