60eb4fc830343a66a64c7b6aca123ec6c807ec48
[yaffs-website] / web / core / modules / help / tests / modules / more_help_page_test / more_help_page_test.module
1 <?php
2
3 /**
4  * @file
5  * More Help Page Test module to test the help blocks.
6  */
7
8 use \Drupal\Core\Routing\RouteMatchInterface;
9
10 /**
11  * Implements hook_help().
12  */
13 function more_help_page_test_help($route_name, RouteMatchInterface $route_match) {
14
15   switch ($route_name) {
16     // Return help for the same route as the help_page_test module.
17     case 'help_page_test.test_array':
18       return ['#markup' => 'Help text from more_help_page_test_help module.'];
19   }
20 }