diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-26 23:35:12 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-26 23:35:12 +0000 |
commit | 76cc2b94aec16bdc54c6aab14e161ac8215e9412 (patch) | |
tree | 8c19229499ef1f46119d167cae139e4ede059df2 /modules | |
parent | b82738fa3fc24a7284aae18c3580c4166d9b2b2d (diff) | |
download | brdo-76cc2b94aec16bdc54c6aab14e161ac8215e9412.tar.gz brdo-76cc2b94aec16bdc54c6aab14e161ac8215e9412.tar.bz2 |
#43447 by Kobus, add1sun and keith.smith: improve blog module help text, also removing ages old reference to import module
Diffstat (limited to 'modules')
-rw-r--r-- | modules/blog/blog.module | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index bc2bf382d..8d9cf6e2b 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -61,9 +61,10 @@ function blog_user($type, &$edit, &$user) { function blog_help($path, $arg) { switch ($path) { case 'admin/help#blog': - $output = '<p>'. t('The blog module allows registered users to maintain an online weblog (commonly known as a blog), often referred to as an online journal or diary. Blogs are made up of individual posts that are time stamped and are typically viewed by date as you would a diary. Blogs often contain links to web pages users have read and/or agree/disagree with.') .'</p>'; - $output .= '<p>'. t('The blog module adds a <em>user blogs</em> navigation link to the site, which takes any visitor to a page that displays the most recent blog entries from all the users on the site. The navigation menu has a <em>create a blog entry</em> link (which takes you to a submission form) and a <em>view personal blog</em> link (which displays your blog entries as other people will see them). The blog module also creates a <em>recent blog posts</em> block that can be enabled.') .'</p>'; - $output .= '<p>'. t('If a user has the ability to post blogs, then the import module (news aggregator) will display a blog-it link next to each news item in its lists. Clicking on this takes the user to the blog submission form, with the title, a link to the item, and a link to the source into the body text already in the text box, ready for the user to add a comment or explanation. This actively encourages people to add blog entries about things they see and hear elsewhere in the website and from your syndicated partner sites.') .'</p>'; + $output = '<p>'. t('The blog module allows registered users to maintain an online journal, or <em>blog</em>. Blogs are made up of individual <em>blog entries</em>, and the blog entries are most often displayed in descending order by creation time.') .'</p>'; + $output .= '<p>'. t('There is an (optional) <em>Blogs</em> menu item added to the Navigation menu, which displays all blogs available on your site, and a <em>My blog</em> item displaying the current user\'s blog entries. The <em>Blog entry</em> menu item under <em>Create content</em> allows new blogs to be created.') .'</p>'; + $output .= '<p>'. t('Each blog entry is displayed with an automatic link to other blogs created by the same user. By default, blog entries have comments enabled and are automatically promoted to the site front page. The blog module also creates a <em>Recent blog posts</em> block that may be enabled at the <a href="@blocks">blocks configuration page</a>.', array('@blocks' => url('admin/build/block'))) .'</p>'; + $output .= '<p>'. t('When using the aggregator module an automatic <em>blog it</em> icon will be displayed next to items displayed in a feed\'s <em>latest items</em> block. Clicking this icon populates a <em>blog entry</em> submit form with a title (the title of the feed item) and body (a link to the source item on its original site, and some illustrative content suitable for use as a block quote). Blog authors can use this feature to easily comment on items of interest that appear in aggregator feeds from other sites. To use this feature, be sure to <a href="@modules">enable</a> the aggregator module, <a href="@feeds">add and configure</a> a feed from another site, and <a href="@blocks">position</a> the feed\'s <em>latest items</em> block.', array('@modules' => url('admin/build/modules'), '@feeds' => url('admin/content/aggregator'), '@blocks' => url('admin/build/block'))) .'</p>'; $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@blog">Blog page</a>.', array('@blog' => 'http://drupal.org/handbook/modules/blog/')) .'</p>'; return $output; } |