You are here

function add_to_head_permission in Add To Head 7

Implements hook_permission().

File

./add_to_head.module, line 69
Add To Head allows abritrary insertion of code into the head of the page based on path selection.

Code

function add_to_head_permission() {
  return array(
    'administer add to head' => array(
      'title' => t('Administer add to head'),
      'description' => t('Insert code into the head of the page based on path selection.'),
      'restrict access' => TRUE,
    ),
  );
}