You are here

function page_help in Drupal 4

Implementation of hook_help().

File

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

Code

function page_help($section) {
  switch ($section) {
    case 'admin/help#page':
      $output = '<p>' . 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. ') . '</p>';
      $output .= '<p>' . 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). ') . '</p>';
      $output .= '<p>' . 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.') . '</p>';
      $output .= '<p>' . t('If the location module is enabled, then location specific information can be added.  If the trackback module is enabled trackbacks can be configured.') . '</p>';
      $output .= t('<p>You can</p>
<ul>
<li>read the node administration help at <a href="%admin-help-node">administer &gt;&gt; help &gt;&gt; node</a>.</li>
<li>read the page administration help at <a href="%admin-help-page">administer &gt;&gt; help &gt;&gt; page</a>.</li>
<li>read the story administration help at <a href="%admin-help-story">administer &gt;&gt; help &gt;&gt; story</a>.</li>
<li>create a page at <a href="%node-add-page">create content &gt;&gt; page</a>.</li>
<li>administer page content type at <a href="%admin-settings-content-types-page">administer &gt;&gt; settings &gt;&gt; content types &gt;&gt; configure page</a>.</li>
</ul>
', 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 .= '<p>' . t('For more information please read the configuration and customization handbook <a href="%page">Page page</a>.', array(
        '%page' => 'http://drupal.org/handbook/modules/page/',
      )) . '</p>';
      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.');
  }
}