You are here

function front_page_permission in Front Page 7

Same name and namespace in other branches
  1. 7.2 front_page.module \front_page_permission()

Implements hook_permission().

File

./front_page.module, line 58

Code

function front_page_permission() {
  return array(
    'access frontpage' => array(
      'title' => t('access frontpage'),
      'description' => t('Allow access to the custom front page.'),
    ),
  );
}