You are here

function empty_page_permission in Empty Page 7

Implements hook_permission().

File

./empty_page.module, line 16
Empty Page module A simple empty page solution. Assists in creating empty menu callbacks, mostly used for pages that only consist of blocks.

Code

function empty_page_permission() {
  $permissions = array(
    EMPTY_PAGE_PERM_ADMIN_CALLBACKS => array(
      'title' => 'Administer Empty Page callbacks',
      'description' => 'Perform management tasks for Empty Page callbacks.',
    ),
  );
  return $permissions;
}