Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / system / tests / modules / experimental_module_test / experimental_module_test.module
1 <?php
2
3 /**
4  * @file
5  * Experimental Test module to test the Core (Experimental) package.
6  */
7
8 use Drupal\Core\Routing\RouteMatchInterface;
9
10 /**
11  * Implements hook_help().
12  */
13 function experimental_module_test_help($route_name, RouteMatchInterface $route_match) {
14
15   switch ($route_name) {
16     case 'help.page.experimental_module_test':
17       // Make the help text conform to core standards. See
18       // \Drupal\system\Tests\Module\InstallUninstallTest::assertHelp().
19       return t('The Experimental Test module is not done yet. It may eat your data, but you can read the <a href=":url">online documentation for the Experimental Test module</a>.', [':url' => 'http://www.example.com']);
20   }
21
22 }