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