You are here

function custom_pagers_permission in Custom Pagers 7

Implements hook_permission()

File

./custom_pagers.module, line 47
Allows administrators to define context-sensitive previous/next pagers for any node type.

Code

function custom_pagers_permission() {
  return array(
    'administer custom pagers' => array(
      'title' => t('administer custom pagers'),
      'description' => t('TODO Add a description for \'administer custom pagers\''),
    ),
    'use php in custom pagers' => array(
      'title' => t('use php in custom pagers'),
      'description' => t('TODO Add a description for \'use php in custom pagers\''),
    ),
  );
}