Contributions API

Calling all Drupal developers!

Help us get this on the first page of Digg. DIGG NOW!

Modules in 6

i18nmenu_locale

Definition

i18nmenu_locale($op = 'groups', $group = NULL)
contributions/i18n/i18nmenu/i18nmenu.module, line 13

Description

Implementation of hook_locale().

Code

<?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();
      }      
  }
}
?>