Certificate.php in Aegir HTTPS 7.3
File
submodules/certificate/drush/Provision/Config/Certificate.phpView source
<?php
/**
* A configuration file class.
*
* Just a file containing the value passed to us.
*/
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());
}
}
Classes
Name | Description |
---|---|
Provision_Config_Certificate | A configuration file class. |