You are here

function content_language_access_perm in Content Language Access 6

Implements hook_perm().

File

./content_language_access.module, line 65
This module provides access checking of the current language of the site with the language of the content (language neutral are not considered).

Code

function content_language_access_perm() {
  return array(
    'administer content_language_access settings',
  );
}