You are here

function locale_perm in Drupal 5

Same name and namespace in other branches
  1. 4 modules/locale.module \locale_perm()
  2. 6 modules/locale/locale.module \locale_perm()

Implementation of hook_perm().

File

modules/locale/locale.module, line 126
Enables administrators to manage the site interface languages.

Code

function locale_perm() {
  return array(
    'administer locales',
  );
}