Skip to content
Snippets Groups Projects

Issue #3337759: Merge help session from 1.3 to 1.4 as well

1 file
+ 17
0
Compare changes
  • Side-by-side
  • Inline
+ 17
0
@@ -4,6 +4,23 @@
* @file
* EBT Basic Button module file.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function ebt_basic_button_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the ebt_basic_button.
case 'help.page.ebt_basic_button':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('EBT modules provide ability to add different blocks in Layout Builder in few clicks.') . '</p>';
return $output;
default:
}
}
/**
* Implements hook_preprocess_paragraph().
Loading