function experimental_module_test_help
Same name and namespace in other branches
- 10 core/modules/system/tests/modules/experimental_module_test/experimental_module_test.module \experimental_module_test_help()
- 9 core/modules/system/tests/modules/experimental_module_test/experimental_module_test.module \experimental_module_test_help()
Implements hook_help().
File
-
core/
modules/ system/ tests/ modules/ experimental_module_test/ experimental_module_test.module, line 13
Code
function experimental_module_test_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.experimental_module_test':
// Make the help text conform to core standards. See
// \Drupal\system\Tests\Module\InstallUninstallTest::assertHelp().
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',
]);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.