diff options
Diffstat (limited to 'modules/story.module')
-rw-r--r-- | modules/story.module | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/story.module b/modules/story.module index f4366d0cb..8742be964 100644 --- a/modules/story.module +++ b/modules/story.module @@ -7,6 +7,11 @@ function story_help() { return $output; } +function story_system($field){ + $system["description"] = t("Enables users to submit stories. These stories are not part of their blogs."); + return $system[$field]; +} + function story_conf_options() { $output .= form_textarea("Explanation or submission guidelines", "story_help", variable_get("story_help", ""), 55, 4, "This text will be displayed at the top of the story submission form. Useful for helping or instructing your users."); $output .= form_select(t("Minimum number of words"), "minimum_story_size", variable_get("minimum_story_size", 0), array(0 => "0 words", 10 => "10 words", 25 => "25 words", 50 => "50 words", 75 => "75 words", 100 => "100 words", 125 => "125 words", 150 => "150 words", 175 => "175 words", 200 => "200 words"), t("The minimum number of words a personal story entry should consist of. This can be useful to rule out submissions that do not meet the site's standards, such as short test posts.")); |