You are here

function page_title_perm in Page Title 6.2

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

Implementation of hook_perm().

File

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

Code

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