function Provision_Service_Certificate_LetsEncrypt::get_certificates in Aegir HTTPS 7.3
Retrieve an array containing the actual files for this https_key.
Overrides Provision_Service_Certificate::get_certificates
File
- submodules/
letsencrypt/ drush/ Provision/ Service/ Certificate/ LetsEncrypt.php, line 68
Class
- Provision_Service_Certificate_LetsEncrypt
- A LetsEncrypt implementation of the Certificate service type.
Code
function get_certificates($https_key) {
$certs = parent::get_certificates($https_key);
// This method is not strictly required, since it's just calling the parent
// implementation. However, for illustrative purposes, this is where we'd
// alter certificate paths, if we wanted to.
return $certs;
}