diff --git a/core/modules/block_place/block_place.info.yml b/core/modules/block_place/block_place.info.yml index 8ae7226..96ba64f 100644 --- a/core/modules/block_place/block_place.info.yml +++ b/core/modules/block_place/block_place.info.yml @@ -1,6 +1,6 @@ name: Place Blocks type: module -description: 'Allow administrators to place blocks from any Drupal page' +description: 'Allows administrators to place blocks from any page' package: Core (Experimental) version: VERSION core: 8.x diff --git a/core/modules/block_place/block_place.module b/core/modules/block_place/block_place.module index 7fe86a6..6609e02 100644 --- a/core/modules/block_place/block_place.module +++ b/core/modules/block_place/block_place.module @@ -15,9 +15,13 @@ function block_place_help($route_name, RouteMatchInterface $route_match) { switch ($route_name) { case 'help.page.block_place': $output = '

' . t('About') . '

'; - $output .= '

' . t('The Place Blocks module allows you to place blocks from every page. For more information, see the online documentation for the Place Blocks module.', [':blocks-documentation' => 'https://www.drupal.org/documentation/modules/block_place/']) . '

'; + $output .= '

' . t('The Place Blocks module allows you to place blocks from every page except the admin page. For more information, see the online documentation for the Place Blocks module.', [':blocks-documentation' => 'https://https://www.drupal.org/docs/8/core/modules/block/overview']) . '

'; + $output .= '

' . t('To add a block : Administer >> Structure >> Blocks >> Add.') . '

'; + $output .= '

' . t('It can also be used for making API changes. For more information, see the online documentation = the API Blocks module.', [':API-blocks-documentation' => 'https://api.drupal.org/api/drupal/modules!block!block.modules']) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '

' . t('Block placement is specific to each theme on your site. This module allows you to place blocks in the context of your content pages.') . '

'; + $output .= '

' . t(' This allows you to define a block containing content of your choice.') . '

'; + $output .= '

' . t('It is also used for making API changes with Drupal.') . '

'; return $output; } }