hosting.feature.package.inc in Hosting 7.4
Same filename and directory in other branches
Expose the package feature to hostmaster.
File
package/hosting.feature.package.incView source
<?php
/**
* @file
* Expose the package feature to hostmaster.
*/
/**
* Implements hook_hosting_feature().
*/
function hosting_package_hosting_feature() {
$features['package'] = array(
'title' => t('Package management'),
'description' => t('Keep track of which packages have been installed, and their versions.'),
'status' => HOSTING_FEATURE_REQUIRED,
'module' => 'hosting_package',
'node' => 'package',
'group' => 'required',
'role_permissions' => array(
'aegir platform manager' => array(
'view package',
),
'aegir client' => array(
'view package',
),
),
);
return $features;
}
Functions
Name | Description |
---|---|
hosting_package_hosting_feature | Implements hook_hosting_feature(). |