You are here

hosting.feature.migrate.inc in Hosting 6.2

Expose the migrate feature to hostmaster.

File

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

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

/**
 * Implementation of hook_hosting_feature().
 */
function hosting_migrate_hosting_feature() {
  $features['migrate'] = array(
    'title' => t('Site migration'),
    'description' => t('Migrate sites to platforms of the same or later version.'),
    'status' => HOSTING_FEATURE_ENABLED,
    'module' => 'hosting_migrate',
    'group' => 'optional',
  );
  return $features;
}

Functions

Namesort descending Description
hosting_migrate_hosting_feature Implementation of hook_hosting_feature().