hosting.feature.migrate.inc in Hosting 7.4
Same filename and directory in other branches
Expose the migrate feature to hostmaster.
File
migrate/hosting.feature.migrate.incView source
<?php
/**
* @file
* Expose the migrate feature to hostmaster.
*/
/**
* Implements hook_hosting_feature().
*/
function hosting_migrate_hosting_feature() {
$features['sitemigrate'] = 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',
'role_permissions' => array(
'aegir platform manager' => array(
'create migrate task',
),
'aegir client' => array(
'create migrate task',
),
),
);
return $features;
}
Functions
Name | Description |
---|---|
hosting_migrate_hosting_feature | Implements hook_hosting_feature(). |