You are here

function custompage_permission in Custom Page 7

Implementation of hook_permission().

File

./custompage.module, line 32
Custom Page Module

Code

function custompage_permission() {
  return array(
    'administer custompage' => array(
      'title' => t('Administer Custom Pages'),
      'description' => t('Allow user to add and remove custom pages'),
    ),
    'edit custompage tiles' => array(
      'title' => t('Edit Custom Page Tiles'),
      'description' => t('Allow user to edit existing tiles'),
    ),
  );
}