You are here

function Provision_Service_Certificate_SelfSigned::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/self_signed/drush/Provision/Service/Certificate/SelfSigned.php, line 68

Class

Provision_Service_Certificate_SelfSigned
A SelfSigned 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;
}