locale_inc_callback

Versions
6 – 7
locale_inc_callback()

Wrapper function to be able to set callbacks in locale.inc

▾ 1 function calls locale_inc_callback()

locale_update_js_files in modules/locale/locale.module
Update JavaScript translation file, if required, and add it to the page.

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
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.