You are here

function Provision_Service_Certificate::get_certificate_paths in Aegir HTTPS 7.3

Retrieve an array containing source and target paths for this https_key.

1 call to Provision_Service_Certificate::get_certificate_paths()
Provision_Service_Certificate::get_certificates in submodules/certificate/drush/Provision/Service/Certificate.php
Retrieve an array containing the actual files for this https_key.
2 methods override Provision_Service_Certificate::get_certificate_paths()
Provision_Service_Certificate_LetsEncrypt::get_certificate_paths in submodules/letsencrypt/drush/Provision/Service/Certificate/LetsEncrypt.php
Retrieve an array containing source and target paths for this https_key.
Provision_Service_Certificate_SelfSigned::get_certificate_paths in submodules/self_signed/drush/Provision/Service/Certificate/SelfSigned.php
Retrieve an array containing source and target paths for this https_key.

File

submodules/certificate/drush/Provision/Service/Certificate.php, line 47

Class

Provision_Service_Certificate
The service type base class.

Code

function get_certificate_paths($https_key) {

  // This is a dummy implementation. We should probably move this into an
  // interface.
  return TRUE;
}