You are here

function hosting_certificate_hosting_feature in Aegir HTTPS 7.3

Implements hook_hosting_feature().

Register the certificate hosting feature with Aegir, initially this feature will be disabled.

File

submodules/certificate/hosting.feature.certificate.inc, line 14
Expose the certificate feature to hostmaster.

Code

function hosting_certificate_hosting_feature() {
  $features['certificate'] = array(
    'title' => t('Certificate service'),
    'description' => t('Certificate service to generate HTTPS certificates for Aegir-hosted sites.'),
    'status' => HOSTING_FEATURE_DISABLED,
    'module' => 'hosting_certificate',
    'group' => 'optional',
  );
  return $features;
}