You are here

function exclude_node_title_perm in Exclude Node Title 6

Implementation of hook_perm().

File

./exclude_node_title.module, line 13
Primarily Drupal hooks and global API functions to exclude node titles.

Code

function exclude_node_title_perm() {
  return array(
    'administer exclude node title',
    'exclude any node title',
    'exclude own node title',
    'use exclude node title',
  );
}