hosting.feature.platform.inc in Hosting 6.2
Same filename and directory in other branches
Expose the platform feature to hostmaster.
File
platform/hosting.feature.platform.incView source
<?php
/**
* @file
* Expose the platform feature to hostmaster.
*/
/**
* Implementation of hook_hosting_feature().
*/
function hosting_platform_hosting_feature() {
$features['platform'] = array(
'title' => t('Platform administration'),
'description' => t('Create and manage platforms.'),
'status' => HOSTING_FEATURE_REQUIRED,
'module' => 'hosting_platform',
'node' => 'platform',
'group' => 'required',
);
return $features;
}
Functions
Name | Description |
---|---|
hosting_platform_hosting_feature | Implementation of hook_hosting_feature(). |