You are here

function Provision_Config_Certificate::unlink in Aegir HTTPS 7.3

Override the unlink method.

2 calls to Provision_Config_Certificate::unlink()
Provision_Config_Certificate_LetsEncrypt::unlink in submodules/letsencrypt/drush/Provision/Config/Certificate/LetsEncrypt.php
Override the unlink method.
Provision_Config_Certificate_SelfSigned::unlink in submodules/self_signed/drush/Provision/Config/Certificate/SelfSigned.php
Override the unlink method.
2 methods override Provision_Config_Certificate::unlink()
Provision_Config_Certificate_LetsEncrypt::unlink in submodules/letsencrypt/drush/Provision/Config/Certificate/LetsEncrypt.php
Override the unlink method.
Provision_Config_Certificate_SelfSigned::unlink in submodules/self_signed/drush/Provision/Config/Certificate/SelfSigned.php
Override the unlink method.

File

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

Class

Provision_Config_Certificate
A configuration file class.

Code

function unlink() {
  parent::unlink();

  // Remove the config from a remote server if necessary.
  $this->data['server']
    ->sync($this
    ->filename());
}