From cf613e228252a161350bbaeec49e6df4d21f2cd5 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Wed, 2 Oct 2013 22:32:51 +0100 Subject: [PATCH] Issue #2091281 by lostkangaroo: Change link format in hook_help() in Action module. --- core/modules/action/action.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/modules/action/action.module b/core/modules/action/action.module index 4dc9a3b652e..a1f2a144082 100644 --- a/core/modules/action/action.module +++ b/core/modules/action/action.module @@ -13,13 +13,13 @@ function action_help($path, $arg) { case 'admin/help#action': $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t('The Action module provides tasks that can be executed by the site such as unpublishing content, sending e-mail messages, or blocking a user. Other modules can trigger these actions when specific system events happen; for example, when new content is posted or when a user logs in. Modules can also provide additional actions. For more information, see the online documentation for the Action module.', array('@documentation' => 'https://drupal.org/documentation/modules/action')) . '

'; + $output .= '

' . t('The Action module provides tasks that can be executed by the site such as unpublishing content, sending e-mail messages, or blocking a user. Other modules can trigger these actions when specific system events happen; for example, when new content is posted or when a user logs in. Modules can also provide additional actions. For more information, see the online documentation for the Action module.', array('!documentation' => 'https://drupal.org/documentation/modules/action')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Using simple actions') . '
'; - $output .= '
' . t('Simple actions do not require configuration and are listed automatically as available on the Actions page.', array('@actions' => url('admin/config/system/actions'))) . '
'; + $output .= '
' . t('Simple actions do not require configuration and are listed automatically as available on the Actions page.', array('!actions' => \Drupal::url('action.admin'))) . '
'; $output .= '
' . t('Creating and configuring advanced actions') . '
'; - $output .= '
' . t('Advanced actions are user-created and have to be configured individually. Create an advanced action on the Actions page by selecting an action type from the drop-down list. Then configure your action, for example by specifying the recipient of an automated e-mail message.', array('@actions' => url('admin/config/system/actions'))) . '
'; + $output .= '
' . t('Advanced actions are user-created and have to be configured individually. Create an advanced action on the Actions page by selecting an action type from the drop-down list. Then configure your action, for example by specifying the recipient of an automated e-mail message.', array('!actions' => \Drupal::url('action.admin'))) . '
'; $output .= '
'; return $output;