You are here

function similarterms_permission in Similar By Terms 7

Valid permissions for this module

Return value

array An array of valid permissions for the similarterms module

File

./similarterms.module, line 31
Similar By Terms module displays a block with similar content based on taxonomy terms.

Code

function similarterms_permission() {
  return array(
    'access similarterms content' => array(
      'title' => t('access similarterms content'),
      'description' => t('Allows role the abilty to see similar by terms content'),
    ),
    'administer similarterms content' => array(
      'title' => t('administer similarterms content'),
      'description' => t('Allows role the abilty to see administer similar by terms settings'),
    ),
  );
}