You are here

function hashtags_permission in Hashtags 7.2

Same name and namespace in other branches
  1. 7 hashtags.module \hashtags_permission()

Implements hook_permission().

File

./hashtags.module, line 24

Code

function hashtags_permission() {
  return array(
    'administer hashtags' => array(
      'title' => t('Administer hashtags'),
      'restrict access' => TRUE,
    ),
  );
}