You are here

function Provision_Config_Certificate_SelfSigned::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.

Overrides Provision_Config_Certificate::filename

2 calls to Provision_Config_Certificate_SelfSigned::filename()
Provision_Config_Certificate_SelfSigned::unlink in submodules/self_signed/drush/Provision/Config/Certificate/SelfSigned.php
Override the unlink method.
Provision_Config_Certificate_SelfSigned::write in submodules/self_signed/drush/Provision/Config/Certificate/SelfSigned.php
Override the write method.

File

submodules/self_signed/drush/Provision/Config/Certificate/SelfSigned.php, line 20

Class

Provision_Config_Certificate_SelfSigned
A configuration file class.

Code

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