function certificate_provision_services in Aegir HTTPS 7.3
Implements hook_provision_services().
Expose the service type this extension defines to provision.
Return value
An array with the service type as key, and the default implementation as value.
File
- submodules/
certificate/ drush/ certificate.drush.inc, line 34 - A Certificate service type for the Provision API.
Code
function certificate_provision_services() {
certificate_provision_register_autoload();
return array(
'Certificate' => NULL,
);
}