locale_inc_callback
- Versions
- 6 – 7
locale_inc_callback()
Wrapper function to be able to set callbacks in locale.inc
Code
modules/locale/locale.module, line 175
<?php
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 