diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-11-01 10:17:34 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-11-01 10:17:34 +0000 |
commit | a8b218827a400cf5ced7db133be0a0f9e2180875 (patch) | |
tree | ef94631d313824ad89e204df283551c5c3bb3f53 /modules/story/story.module | |
parent | 3f4d18fafc2718a056be07b9bf3c51ecfa610f33 (diff) | |
download | brdo-a8b218827a400cf5ced7db133be0a0f9e2180875.tar.gz brdo-a8b218827a400cf5ced7db133be0a0f9e2180875.tar.bz2 |
- Patch #26139 by webchick / Kieran / documentation team: improved admin help of core modules! /
Diffstat (limited to 'modules/story/story.module')
-rw-r--r-- | modules/story/story.module | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/story/story.module b/modules/story/story.module index 813c50769..272e86a3b 100644 --- a/modules/story/story.module +++ b/modules/story/story.module @@ -11,6 +11,17 @@ */ function story_help($section) { switch ($section) { + case 'admin/help#story': + $output = '<p>'. t('The story module is used to create a content post type called <em>stories.</em> Stories are articles in their simplest form: they have a title, a teaser and a body. Stories are typically used to post news articles or as a group blog. ') .'</p>'; + $output .= '<p>'. t('The story administration interface allows for complex configuration. It provides a submission form, workflow, default view permission, default edit permission, permissions for permission, and attachments. Trackbacks can also be enabled.') .'</p>'; + $output .= t('<p>You can</p> +<ul> +<li>post a story at <a href="%node-add-story">create content >> story</a>.</li> +<li>configure story at <a href="%admin-node-configure-types"> administer >> content >> configure types >> story configure</a>.</li> +</ul> +', array('%node-add-story' => url('node/add/story'), '%admin-node-configure-types' => url('admin/node/configure/types'))); + $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="%story">Story page</a>.', array('%story' => 'http://www.drupal.org/handbook/modules/story/')) .'</p>'; + return $output; case 'admin/modules#description': return t('Allows users to submit stories, articles or similar content.'); case 'node/add#story': |