icingaweb2-module-director/library/Director/Job/HousekeepingJob.php

40 lines
882 B
PHP
Raw Permalink Normal View History

<?php
namespace Icinga\Module\Director\Job;
use Icinga\Module\Director\Db\Housekeeping;
use Icinga\Module\Director\Hook\JobHook;
2016-04-22 10:04:48 +02:00
use Icinga\Module\Director\Web\Form\QuickForm;
class HousekeepingJob extends JobHook
{
protected $housekeeping;
public function run()
{
$this->housekeeping()->runAllTasks();
}
2016-04-22 10:04:48 +02:00
public static function getDescription(QuickForm $form)
{
return $form->translate(
'The Housekeeping job provides various task that keep your Director'
. ' database fast and clean'
);
}
public function isPending()
{
return $this->housekeeping()->hasPendingTasks();
}
protected function housekeeping()
{
if ($this->housekeeping === null) {
$this->housekeeping = new Housekeeping($this->db());
}
return $this->housekeeping;
}
}