You are here

function exclude_node_title_permission in Exclude Node Title 7

Implements hook_permission().

File

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

Code

function exclude_node_title_permission() {
  return array(
    'administer exclude node title' => array(
      'title' => t('Administer exclude node title'),
    ),
    'exclude any node title' => array(
      'title' => t('Exclude any node title'),
    ),
    'exclude own node title' => array(
      'title' => t('Exclude own node title'),
    ),
    'use exclude node title' => array(
      'title' => t('View nodes without titles per Exclude Node Title settings'),
    ),
  );
}