123456789101112131415161718192021222324 |
- <?php
- use Drupal\Core\Routing\RouteMatchInterface;
- function heartbeat8_help($route_name, RouteMatchInterface $route_match) {
- switch ($route_name) {
-
- case 'help.page.heartbeat8':
- $output = '';
- $output .= '<h3>' . t('About') . '</h3>';
- $output .= '<p>' . t('Heartbeat 8') . '</p>';
- return $output;
- default:
- }
- }
|