locale_locale

Definition

locale_locale($op = 'groups')
modules/locale/locale.module, line 203

Description

Implementation of hook_locale().

Code

<?php
function locale_locale($op = 'groups') {
  switch ($op) {
    case 'groups':
      return array('default' => t('Built-in interface'));
  }
}
?>
 
 

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.