diff --git a/core/modules/action/action.module b/core/modules/action/action.module index 58bb4a8..81b60d5 100644 --- a/core/modules/action/action.module +++ b/core/modules/action/action.module @@ -11,16 +11,16 @@ function action_help($path, $arg) { switch ($path) { case 'admin/help#action': - $output = '

' . t('Actions are individual tasks that the system can do, such as unpublishing a piece of content or banning a user. Other modules can fire these actions when certain system events happen; for example, when a new post is added or when a user logs in. Modules may also provide additional actions. Visit the Actions page to configure actions.', array('@actions' => url('admin/config/system/actions'))) . '

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

' . t('About') . '

'; + $output .= '

' . t('The Action module provides tasks that can be executed by the site such as unpublishing content, sending an email, or blocking a user. Other modules can trigger these actions when specific system events happen; for example, when a new content is posted or when a user logs in. Modules can also provide additional actions. Simple actions do not require any additional configuration and are listed automatically on the Actions page. Advanced actions need to be created and configured individually.', array('@action' => url('admin/config/system/actions'))) . '

'; + $output .= '

' . t('For more information on Actions, see the online documentation.', array('@documentation' => 'https://drupal.org/documentation/modules/action')) . '

'; + $output .= '

' . t('Uses') . '

'; + $output .= '
'; + $output .= '
' . t('Creating and configuring advanced actions') . '
'; + $output .= '
' . t('An advanced action can be created on the Actions page by selecting an action type from the drop-down list. You can then configure your action, for example by specifing the e-mail address to which an automated email should be send.', array('@action' => url('admin/config/system/actions'))) . '
'; + $output .= '
'; return $output; - - case 'admin/config/system/actions': - case 'admin/config/system/actions/manage': - $output = '

' . t('There are two types of actions: simple and advanced. Simple actions do not require any additional configuration and are listed here automatically. Advanced actions need to be created and configured before they can be used because they have options that need to be specified; for example, sending an e-mail to a specified address or unpublishing content containing certain words. To create an advanced action, select the action from the drop-down list in the advanced action section below and click the Create button.') . '

'; - return $output; - - case 'admin/config/system/actions/configure': - return t('An advanced action offers additional configuration options which may be filled out below. Changing the Description field is recommended in order to better identify the precise action taking place.'); } }