You are here

class Provision_Config_Certificate_LetsEncrypt in Aegir HTTPS 7.3

A configuration file class.

Just a file containing the value passed to us.

Hierarchy

Expanded class hierarchy of Provision_Config_Certificate_LetsEncrypt

File

submodules/letsencrypt/drush/Provision/Config/Certificate/LetsEncrypt.php, line 8

View source
class Provision_Config_Certificate_LetsEncrypt extends Provision_Config_Certificate {

  /**
   * Template file to load. In the same directory as this class definition.
   */
  public $template = 'letsencrypt.tpl.php';

  /**
   * 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.
   */
  function filename() {
    return $this->letsencrypt_config_path . '/letsencrypt.conf';
  }

  /**
   * Override the write method.
   */
  function write() {
    parent::write();

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

  /**
   * Override the unlink method.
   */
  function unlink() {
    parent::unlink();

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

}

Members

Namesort descending Modifiers Type Description Overrides
Provision_Config_Certificate_LetsEncrypt::$template public property Template file to load. In the same directory as this class definition. Overrides Provision_Config_Certificate::$template
Provision_Config_Certificate_LetsEncrypt::filename function Where the file generated will end up. Overrides Provision_Config_Certificate::filename
Provision_Config_Certificate_LetsEncrypt::unlink function Override the unlink method. Overrides Provision_Config_Certificate::unlink
Provision_Config_Certificate_LetsEncrypt::write function Override the write method. Overrides Provision_Config_Certificate::write