function hosting_dns_hosting_feature in Hostmaster (Aegir) 6
Implementation of hook_hosting_feature().
File
- modules/
hosting/ 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;
}