You are here

function page_perm in Drupal 4

Implementation of hook_perm().

File

modules/page.module, line 39
Enables the creation of pages that can be added to the navigation system.

Code

function page_perm() {
  return array(
    'create pages',
    'edit own pages',
  );
}