mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-23 13:54:27 +02:00
117 lines
2.2 KiB
PHP
117 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\CustomVariable;
|
|
|
|
class CustomVariables
|
|
{
|
|
protected $storedVars = array();
|
|
|
|
protected $vars = array();
|
|
|
|
protected $modified = false;
|
|
|
|
/**
|
|
* Generic setter
|
|
*
|
|
* @param string $property
|
|
* @param mixed $value
|
|
*
|
|
* @return array
|
|
*/
|
|
public function set($key, $value)
|
|
{
|
|
$key = (string) $key;
|
|
|
|
// TODO: add support for null values
|
|
if ($value === null) {
|
|
unset($this->$key);
|
|
}
|
|
|
|
if ($value === $this->get($key)) {
|
|
return $this;
|
|
}
|
|
|
|
$this->vars[$key] = $value;
|
|
$this->modified = true;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function hasBeenModified()
|
|
{
|
|
return $this->modified;
|
|
}
|
|
|
|
public function setUnmodified()
|
|
{
|
|
$this->modified = false;
|
|
$this->storedVars = $this->vars;
|
|
return $this;
|
|
}
|
|
|
|
public function toConfigString()
|
|
{
|
|
$out = '';
|
|
|
|
foreach ($this->vars as $key => $var) {
|
|
$out .= $var->toConfigString()
|
|
}
|
|
|
|
return $out;
|
|
}
|
|
|
|
public function __get($key)
|
|
{
|
|
return $this->get($key);
|
|
}
|
|
|
|
/**
|
|
* Magic setter
|
|
*
|
|
* @param string $key Key
|
|
* @param mixed $val Value
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __set($key, $val)
|
|
{
|
|
$this->set($key, $val);
|
|
}
|
|
|
|
/**
|
|
* Magic isset check
|
|
*
|
|
* @return boolean
|
|
*/
|
|
public function __isset($key)
|
|
{
|
|
return array_key_exists($key, $this->properties);
|
|
}
|
|
|
|
/**
|
|
* Magic unsetter
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __unset($key)
|
|
{
|
|
if (! array_key_exists($key, $this->properties)) {
|
|
throw new Exception('Trying to unset invalid key');
|
|
}
|
|
$this->properties[$key] = $this->defaultProperties[$key];
|
|
}
|
|
|
|
public function __toString()
|
|
{
|
|
try {
|
|
return $this->toConfigString();
|
|
} catch (Exception $e) {
|
|
trigger_error($e);
|
|
$previousHandler = set_exception_handler(function () {});
|
|
restore_error_handler();
|
|
call_user_func($previousHandler, $e);
|
|
die();
|
|
}
|
|
}
|
|
}
|