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