function hosting_dns_hosting_feature in Hosting 6.2
Implementation of hook_hosting_feature().
File
- dns/
hosting.feature.dns.inc, line 10 - Expose the dns feature to hostmaster.
Code
function hosting_dns_hosting_feature() {
$features['dns'] = array(
'title' => t('DNS support'),
'description' => t('Manage DNS records for your hosted sites.'),
'status' => HOSTING_FEATURE_DISABLED,
'module' => 'hosting_dns',
'group' => 'experimental',
);
return $features;
}