| Versionen | |
|---|---|
| drupal6 – drupal7 | locale_locale($op = 'groups') |
Implementation of hook_locale().
modules/
<?php
function locale_locale($op = 'groups') {
switch ($op) {
case 'groups':
return array('default' => t('Built-in interface'));
}
}
?>
Kommentare
Kommentar hinzufügen