You are here

hosting.feature.clone.inc in Hosting 6.2

Expose the clone feature to hostmaster.

File

clone/hosting.feature.clone.inc
View source
<?php

/**
 * @file
 *   Expose the clone feature to hostmaster.
 */

/**
 * Implementation of hook_hosting_feature().
 */
function hosting_clone_hosting_feature() {
  $features['clone'] = array(
    'title' => t('Site cloning'),
    'description' => t('Clone sites to platforms of the same or later version.'),
    'status' => HOSTING_FEATURE_ENABLED,
    'module' => 'hosting_clone',
    'group' => 'optional',
  );
  return $features;
}

Functions

Namesort descending Description
hosting_clone_hosting_feature Implementation of hook_hosting_feature().