From a8b218827a400cf5ced7db133be0a0f9e2180875 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 1 Nov 2005 10:17:34 +0000 Subject: - Patch #26139 by webchick / Kieran / documentation team: improved admin help of core modules! / --- modules/page/page.module | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'modules/page/page.module') diff --git a/modules/page/page.module b/modules/page/page.module index 155521b1b..56fb29ad5 100644 --- a/modules/page/page.module +++ b/modules/page/page.module @@ -11,6 +11,22 @@ */ function page_help($section) { switch ($section) { + case 'admin/help#page': + $output = '

'. 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-node-configure-types-page' => url('admin/node/configure/types/page'))); + $output .= '

'. t('For more information please read the configuration and customization handbook Page page.', array('%page' => 'http://www.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': -- cgit v1.2.3