hosting.feature.hosting.inc in Hosting 6.2
Same filename and directory in other branches
Expose the hosting feature to hostmaster.
File
hosting.feature.hosting.incView source
<?php
/**
* @file
* Expose the hosting feature to hostmaster.
*/
/**
* Implementation of hook_hosting_feature().
*/
function hosting_hosting_feature() {
$features['hosting'] = array(
'title' => t('Hosting system'),
'description' => t('API to provide support for servers, platforms and sites.'),
'status' => HOSTING_FEATURE_REQUIRED,
'module' => 'hosting',
'group' => 'required',
);
return $features;
}
Functions
Name | Description |
---|---|
hosting_hosting_feature | Implementation of hook_hosting_feature(). |