You are here

hosting.feature.dns.inc in Hosting 6.2

Expose the dns feature to hostmaster.

File

dns/hosting.feature.dns.inc
View source
<?php

/**
 * @file
 *   Expose the dns feature to hostmaster.
 */

/**
 * Implementation of hook_hosting_feature().
 */
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;
}

Functions

Namesort descending Description
hosting_dns_hosting_feature Implementation of hook_hosting_feature().