? help_block.patch ? sites/localhost.drupal7 ? sites/default/files ? sites/default/private ? sites/default/settings.php Index: modules/block/block.module =================================================================== RCS file: /cvs/drupal/drupal/modules/block/block.module,v retrieving revision 1.398 diff -u -p -r1.398 block.module --- modules/block/block.module 11 Nov 2009 08:52:27 -0000 1.398 +++ modules/block/block.module 14 Nov 2009 07:19:46 -0000 @@ -17,17 +17,16 @@ define('BLOCK_REGION_NONE', -1); function block_help($path, $arg) { switch ($path) { case 'admin/help#block': - $output = '

' . t('Blocks are boxes of content rendered into an area, or region, of a web page. The default theme Garland, for example, implements the regions "left sidebar", "right sidebar", "content", "header", and "footer", and a block may appear in any one of these areas. The blocks administration page provides a drag-and-drop interface for assigning a block to a region, and for controlling the order of blocks within regions.', array('@blocks' => url('admin/structure/block'))) . '

'; - $output .= '

' . t('Although blocks are usually generated automatically by modules (like the User login block, for example), administrators can also define custom blocks. Custom blocks have a title, description, and body. The body of the block can be as long as necessary, and can contain content supported by any available text format.', array('@text-format' => url('admin/config/content/formats'))) . '

'; - $output .= '

' . t('When working with blocks, remember that:') . '

'; - $output .= ''; - $output .= '

' . t('For more information, see the online handbook entry for Block module.', array('@block' => 'http://drupal.org/handbook/modules/block/')) . '

'; + $output = ''; + $output = '

' . t('About') . '

'; + $output .= '

' . 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 blocks administration page 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 Block module.', array('@block' => 'http://drupal.org/handbook/modules/block/', '@blocks' => url('admin/structure/block'))) . '

'; + $output .= '

' . t('Uses') . '

'; + $output .= '
'; + $output .= '
' . t('Positioning content') . '
'; + $output .= '
' . t('When working with blocks, remember that all themes do not implement the same regions, or display regions in the same way. Blocks are positioned on a per-theme basis. Disabled blocks, which have not been placed in a region, are never shown.') . '
'; + $output .= '
' . t('Controlling visibility') . '
'; + $output .= '
' . t('Blocks can be configured to be visible only on certain pages, only to users of certain roles, or only on pages displaying certain content types. When allowed by an administrator, specific blocks may be enabled or disabled on a per-user basis using the My account page. Some dynamic blocks, such as those generated by modules, will be displayed only on certain pages.', array('@content-type' => url('admin/structure/types'))) . '
'; + $output .= '
'; return $output; case 'admin/structure/block/add': return '

' . t('Use this page to create a new custom block. New blocks are disabled by default, and must be moved to a region on the blocks administration page to be visible.', array('@blocks' => url('admin/structure/block'))) . '

';