parent
7358eefed8
commit
7ea9051d43
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
||||
|
||||
namespace Icinga\Module\Monitoring\Backend\Ido\Query;
|
||||
|
||||
/**
|
||||
* Query for host comment removal records
|
||||
*/
|
||||
class HostcommentdeletionhistoryQuery extends HostcommenthistoryQuery
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function whereToSql($col, $sign, $expression)
|
||||
{
|
||||
if ($col === 'UNIX_TIMESTAMP(hch.deletion_time)') {
|
||||
return 'hch.deletion_time ' . $sign . ' ' . $this->timestampForSql($this->valueToTimestamp($expression));
|
||||
} else {
|
||||
return parent::whereToSql($col, $sign, $expression);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
protected function joinBaseTables()
|
||||
{
|
||||
parent::joinBaseTables();
|
||||
$this->select->where("hch.deletion_time > '1970-01-02 00:00:00'");
|
||||
$this->columnMap['history']['timestamp'] = str_replace(
|
||||
'comment_time',
|
||||
'deletion_time',
|
||||
$this->columnMap['history']['timestamp']
|
||||
);
|
||||
$this->columnMap['history']['type'] = str_replace(
|
||||
'END)',
|
||||
"END || '_deleted')",
|
||||
$this->columnMap['history']['type']
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue