You are here

function i18n_perm in Internationalization 5.3

Same name and namespace in other branches
  1. 5 i18n.module \i18n_perm()
  2. 5.2 i18n.module \i18n_perm()
  3. 6 i18n.module \i18n_perm()

Implementation of hook_perm().

Permissions defined

  • administer all languages Disables language conditions for administration pages, so the user can view objects for all languages at the same time. This applies for: menu items, taxonomy

File

./i18n.module, line 975
Internationalization (i18n) module

Code

function i18n_perm() {
  return array(
    'administer all languages',
  );
}