function hosting_migrate_hosting_feature in Hosting 6.2
Same name and namespace in other branches
- 5 migrate/hosting.feature.migrate.inc \hosting_migrate_hosting_feature()
- 7.4 migrate/hosting.feature.migrate.inc \hosting_migrate_hosting_feature()
- 7.3 migrate/hosting.feature.migrate.inc \hosting_migrate_hosting_feature()
Implementation of hook_hosting_feature().
File
- migrate/
hosting.feature.migrate.inc, line 10 - Expose the migrate feature to hostmaster.
Code
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;
}