You are here

class Provision_Config_Certificate 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

File

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

View source
class Provision_Config_Certificate extends Provision_Config {

  /**
   * Template file to load. In the same directory as this class definition.
   */
  public $template = 'selfsigned.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->certificate_config_path . '/certificate.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::$template public property Template file to load. In the same directory as this class definition. 2
Provision_Config_Certificate::filename function Where the file generated will end up. 2
Provision_Config_Certificate::unlink function Override the unlink method. 2
Provision_Config_Certificate::write function Override the write method. 2