mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-29 16:54:06 +02:00
JobHook: add new helper methods, accept Definition
This commit is contained in:
parent
c6eab9c75f
commit
f32d5a646b
@ -2,13 +2,23 @@
|
||||
|
||||
namespace Icinga\Module\Director\Hook;
|
||||
|
||||
use Icinga\Application\Icinga;
|
||||
use Icinga\Module\Director\Db;
|
||||
use Icinga\Module\Director\Objects\DirectorJob;
|
||||
use Icinga\Module\Director\Web\Form\QuickForm;
|
||||
|
||||
abstract class JobHook
|
||||
{
|
||||
private $db;
|
||||
|
||||
private $output = array();
|
||||
|
||||
private $warnings = array();
|
||||
|
||||
private $errors = array();
|
||||
|
||||
private $jobDefinition;
|
||||
|
||||
public static function getDescription(QuickForm $form)
|
||||
{
|
||||
return false;
|
||||
@ -21,6 +31,17 @@ abstract class JobHook
|
||||
// TODO: Can be overridden, double-check whether this is necessary
|
||||
}
|
||||
|
||||
public function setDefinition(DirectorJob $definition)
|
||||
{
|
||||
$this->jobDefinition = $definition;
|
||||
return $this;
|
||||
}
|
||||
|
||||
protected function getSetting($key, $default = null)
|
||||
{
|
||||
return $this->jobDefinition->getSetting($key, $default);
|
||||
}
|
||||
|
||||
public function getName()
|
||||
{
|
||||
$parts = explode('\\', get_class($this));
|
||||
@ -63,5 +84,35 @@ abstract class JobHook
|
||||
return $this->db;
|
||||
}
|
||||
|
||||
protected function output($message)
|
||||
{
|
||||
$this->output[] = $message;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* printf helper method
|
||||
*
|
||||
* @param string $message Format string
|
||||
* @param mixed ...$arg Format string argument
|
||||
*
|
||||
* @return self
|
||||
*/
|
||||
protected function printf($message)
|
||||
{
|
||||
$args = array_slice(func_get_args(), 1);
|
||||
return $this->output(vsprintf($message, $args));
|
||||
}
|
||||
|
||||
protected function warning($message)
|
||||
{
|
||||
$this->warnings[] = $message;
|
||||
return $this;
|
||||
}
|
||||
|
||||
protected function error($message)
|
||||
{
|
||||
$this->errors[] = $message;
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user