test Drupal site working on Koality Theme Builder
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
514 B

4 years ago
  1. <?php
  2. /**
  3. * @file
  4. * Contains koality_theme.module.
  5. */
  6. use Drupal\Core\Routing\RouteMatchInterface;
  7. /**
  8. * Implements hook_help().
  9. */
  10. function koality_theme_help($route_name, RouteMatchInterface $route_match) {
  11. switch ($route_name) {
  12. // Main module help for the koality_theme module.
  13. case 'help.page.koality_theme':
  14. $output = '';
  15. $output .= '<h3>' . t('About') . '</h3>';
  16. $output .= '<p>' . t('Generate your own Koality Theme') . '</p>';
  17. return $output;
  18. default:
  19. }
  20. }