You are here

function page_title_perm in Page Title 5.2

Same name and namespace in other branches
  1. 5 page_title.module \page_title_perm()
  2. 6.2 page_title.module \page_title_perm()
  3. 6 page_title.module \page_title_perm()

Implementation of hook_perm().

File

./page_title.module, line 41
Enhanced control over the page title (in the head tag).

Code

function page_title_perm() {
  return array(
    'set page title',
    'administer page titles',
  );
}