You are here

function Provision_Config_Certificate::filename in Aegir HTTPS 7.3

Where the file generated will end up.

It is extremely important that this path is only made up of information relative to this class, and does not use drush_get_option or the d() accessor.

2 calls to Provision_Config_Certificate::filename()
Provision_Config_Certificate::unlink in submodules/certificate/drush/Provision/Config/Certificate.php
Override the unlink method.
Provision_Config_Certificate::write in submodules/certificate/drush/Provision/Config/Certificate.php
Override the write method.
2 methods override Provision_Config_Certificate::filename()
Provision_Config_Certificate_LetsEncrypt::filename in submodules/letsencrypt/drush/Provision/Config/Certificate/LetsEncrypt.php
Where the file generated will end up.
Provision_Config_Certificate_SelfSigned::filename in submodules/self_signed/drush/Provision/Config/Certificate/SelfSigned.php
Where the file generated will end up.

File

submodules/certificate/drush/Provision/Config/Certificate.php, line 20

Class

Provision_Config_Certificate
A configuration file class.

Code

function filename() {
  return $this->certificate_config_path . '/certificate.conf';
}