Calling all Drupal developers!
Help us get this on the first page of Digg. DIGG NOW!
Help us get this on the first page of Digg. DIGG NOW!
i18nmenu_locale($op = 'groups', $group = NULL)
contributions/i18n/i18nmenu/i18nmenu.module, line 13
Implementation of hook_locale().
<?php
function i18nmenu_locale($op = 'groups', $group = NULL) {
switch ($op) {
case 'groups':
return array('menu' => t('Menu'));
case 'refresh':
if ($group == 'profile') {
return i18nmenu_locale_refresh();
}
}
}
?>