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

Issue #3079619 by yas, baldwinlouie: Remove cloud_server_template module

parent 68fef82c
No related branches found
No related tags found
No related merge requests found
The functionality has been moved to cloud module. This module will be removed
in the future.
name: Cloud Server Template
description: 'Allow to pre-configure servers by starting from a base image.'
package: Cloud
dependencies:
- cloud:cloud
core: 8.x
type: module
<?php
/**
* @file
* Provides cloud server template functionality for each cloud sub-system.
*
* Works with Cloud module.
*
* The functionality has been moved to cloud module. This module will be
* removed in the future.
*
* {@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