Same name and namespace in other branches
  1. 4.6.x modules/blog.module \blog_help()
  2. 4.7.x modules/blog.module \blog_help()
  3. 5.x modules/blog/blog.module \blog_help()
  4. 7.x modules/blog/blog.module \blog_help()

Implementation of hook_help().

File

modules/blog/blog.module, line 61
Enables keeping an easily and regularly updated web page or a blog.

Code

function blog_help($path, $arg) {
  switch ($path) {
    case 'admin/help#blog':
      $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 blog entries 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 administration page</a>.', array(
        '@blocks' => url('admin/build/block'),
      )) . '</p>';
      $output .= '<p>' . t('When using the aggregator module an automatic <em>blog it</em> icon is displayed next to the items in a feed\'s <em>latest items</em> block. Clicking this icon populates a <em>blog entry</em> with a title (the title of the feed item) and body (a link to the source item on its original site and illustrative content suitable for use in 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, see the online handbook entry for <a href="@blog">Blog module</a>.', array(
        '@blog' => 'http://drupal.org/handbook/modules/blog/',
      )) . '</p>';
      return $output;
  }
}