Skip to content
Snippets Groups Projects
Commit 68708c1c authored by Yas Naoi's avatar Yas Naoi Committed by Yas Naoi
Browse files

Issue #3054453 by yas: Implement hook_help() in CloudServerTemplate

parent ed96cf91
No related branches found
No related tags found
No related merge requests found
...@@ -11,3 +11,16 @@ ...@@ -11,3 +11,16 @@
* *
* {@deprecated} * {@deprecated}
*/ */
/**
* Implements hook_help().
*/
function cloud_server_template_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.cloud_server_template':
$output = '<p>' . t('The functionality has been moved to cloud module. This module will be removed
in the future.') . '</p>';
return $output;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment