function content_language_access_permission in Content Language Access 7
Implements hook_permission().
File
- ./
content_language_access.module, line 83 - Include language permissions to modify content.
Code
function content_language_access_permission() {
return array(
'administer content_language_access settings' => array(
'title' => t('Administer Content Language Access'),
'description' => t('Perform administration tasks for Content Language Access.'),
),
'bypass content_language_access' => array(
'title' => t('Bypass Content Language Access restriction'),
'description' => t("Allow users to access content in other languages than current site's language."),
),
);
}