You are here

function Provision_Config_Certificate::write in Aegir HTTPS 7.3

Override the write method.

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

File

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

Class

Provision_Config_Certificate
A configuration file class.

Code

function write() {
  parent::write();

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