'. t('The page module allows users to create static pages, which are the most basic type of content. Pages are commonly collected in books via the book module. Users should create a page if the information on the page is static. An example would be an "about" page. ') .'

'; $output .= '

'. t('When a page is created, a user can set authoring information, configure publishing options, whether readers will be able to post comments. They can also select the content type of the page (e.g., full HTML, filtered HTML). ') .'

'; $output .= '

'. t('As an administrator, you can set the publishing default for a page (in its workflow): you can specify whether a page is by default published, sent to moderation, promoted to the front page, sticky at the top of lists, and whether revisions are enabled by default. You can set the permissions that different user roles have to view, create, and edit pages.') .'

'; $output .= '

'. t('If the location module is enabled, then location specific information can be added. If the trackback module is enabled trackbacks can be configured.') .'

'; $output .= t('

You can

', array('%admin-help-node' => url('admin/help/node'), '%admin-help-page' => url('admin/help/page'), '%admin-help-story' => url('admin/help/story'), '%node-add-page' => url('node/add/page'), '%admin-settings-content-types-page' => url('admin/settings/content-types/page'))); $output .= '

'. t('For more information please read the configuration and customization handbook Page page.', array('%page' => 'http://drupal.org/handbook/modules/page/')) .'

'; return $output; case 'admin/modules#description': return t('Enables the creation of pages that can be added to the navigation system.'); case 'node/add#page': return t('If you want to add a static page, like a contact page or an about page, use a page.'); } } /** * Implementation of hook_perm(). */ function page_perm() { return array('create pages', 'edit own pages'); } /** * Implementation of hook_node_info(). */ function page_node_info() { return array('page' => array('name' => t('page'), 'base' => 'page')); } /** * Implementation of hook_access(). */ function page_access($op, $node) { global $user; if ($op == 'create') { return user_access('create pages'); } if ($op == 'update' || $op == 'delete') { if (user_access('edit own pages') && ($user->uid == $node->uid)) { return TRUE; } } } /** * Implementation of hook_menu(). */ function page_menu($may_cache) { $items = array(); if ($may_cache) { $items[] = array('path' => 'node/add/page', 'title' => t('page'), 'access' => user_access('create pages')); } return $items; } /** * Implementation of hook_form(). */ function page_form(&$node) { $form['title'] = array('#type' => 'textfield', '#title' => t('Title'), '#required' => TRUE, '#default_value' => $node->title, '#weight' => -5); $form['body_filter']['body'] = array('#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#rows' => 20, '#required' => TRUE); $form['body_filter']['format'] = filter_form($node->format); $form['log'] = array( '#type' => 'textarea', '#title' => t('Log message'), '#default_value' => $node->log, '#weight' => 5, '#description' => t('An explanation of the additions or updates being made to help other authors understand your motivations.') ); return $form; }