2c2 < index 7461302..e7f81a5 100644 --- > index 7461302..49de396 100644 5,16c5,7 < @@ -23,14 +23,15 @@ function action_help($route_name, RouteMatchInterface $route_match) { < $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 email message.', array(':actions' => \Drupal::url('entity.action.collection'))) . '
'; < $output .= ''; < - return $output; < + return ['#markup' => $output]; < < case 'entity.action.collection': < $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 email 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; < + return ['#markup' => $output]; < --- > @@ -30,7 +30,8 @@ function action_help($route_name, RouteMatchInterface $route_match) { > return $output; > 20c11 < + return ['#markup' => $output]; --- > + return $output; 23c14 < --- >