mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-23 22:04:25 +02:00
parent
8ebc92ee44
commit
aae7c1150e
12
library/Icinga/Data/Filter/FilterMatchNotCaseInsensitive.php
Normal file
12
library/Icinga/Data/Filter/FilterMatchNotCaseInsensitive.php
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
/* Icinga Web 2 | (c) 2016 Icinga Development Team | GPLv2+ */
|
||||||
|
|
||||||
|
namespace Icinga\Data\Filter;
|
||||||
|
|
||||||
|
class FilterMatchNotCaseInsensitive extends FilterMatchNot
|
||||||
|
{
|
||||||
|
public function __construct($column, $sign, $expression) {
|
||||||
|
parent::__construct($column, $sign, $expression);
|
||||||
|
$this->caseSensitive = false;
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user