diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-22 21:24:37 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-22 21:24:37 +0000 |
commit | a26636549316a3d4c03e9c5d6646b701071109cf (patch) | |
tree | 54bf99a3954d6e3f64449ba73cc84d0e82694da7 | |
parent | a855fe0e99d906b7599f975544eaa07e5c35270a (diff) | |
download | brdo-a26636549316a3d4c03e9c5d6646b701071109cf.tar.gz brdo-a26636549316a3d4c03e9c5d6646b701071109cf.tar.bz2 |
#632898 follow-up by batigolix and arianek: Minor tweaks to Block module documentation for consistency.
-rw-r--r-- | modules/block/block.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/block/block.module b/modules/block/block.module index a91abdd01..0d924653b 100644 --- a/modules/block/block.module +++ b/modules/block/block.module @@ -18,8 +18,8 @@ function block_help($path, $arg) { switch ($path) { case 'admin/help#block': $output = ''; - $output = '<h3>' . t('About') . '</h3>'; - $output .= '<p>' . t('Blocks are boxes of content rendered into an area, or region, of one or more pages of a website. The default theme Seven, for example, implements the regions "Content", "Help", "Dashboard main", and "Dashboard sidebar", and a block may appear in any one of these areas. The <a href="@blocks">blocks administration page</a> provides a drag-and-drop interface for assigning a block to a region, and for controlling the order of blocks within regions. For more information, see the online handbook entry for <a href="@block">Block module</a>.', array('@block' => 'http://drupal.org/handbook/modules/block/', '@blocks' => url('admin/structure/block'))) . '</p>'; + $output .= '<h3>' . t('About') . '</h3>'; + $output .= '<p>' . t('The Block module allows you to create boxes of content, which are rendered into an area, or region, of one or more pages of a website. The default theme Seven, for example, implements the regions "Content", "Help", "Dashboard main", and "Dashboard sidebar", and a block may appear in any one of these areas. The <a href="@blocks">blocks administration page</a> provides a drag-and-drop interface for assigning a block to a region, and for controlling the order of blocks within regions. For more information, see the online handbook entry for <a href="@block">Block module</a>.', array('@block' => 'http://drupal.org/handbook/modules/block/', '@blocks' => url('admin/structure/block'))) . '</p>'; $output .= '<h3>' . t('Uses') . '</h3>'; $output .= '<dl>'; $output .= '<dt>' . t('Positioning content') . '</dt>'; |