You are here

function htaccess_permission in Htaccess 7.2

Same name and namespace in other branches
  1. 7 htaccess.module \htaccess_permission()

Implementation of hook_permission()

File

./htaccess.module, line 27
Htaccess is a module which autogenerates a Drupal root htaccess file based on your settings.

Code

function htaccess_permission() {
  return array(
    'administer htaccess module' => array(
      'title' => t('Administer htaccess module'),
      'description' => t('Ability to generate htaccess.'),
    ),
  );
}