From 939188be9473a56e8d32ba9d6a37f516571180fa Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Wed, 23 Sep 2015 13:00:46 +0200 Subject: [PATCH] FilterMatch: Do not re-invent the parents implementation of matches() refs #5600 --- library/Icinga/Data/Filter/FilterMatch.php | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/library/Icinga/Data/Filter/FilterMatch.php b/library/Icinga/Data/Filter/FilterMatch.php index a5c058b91..9f25ac88d 100644 --- a/library/Icinga/Data/Filter/FilterMatch.php +++ b/library/Icinga/Data/Filter/FilterMatch.php @@ -5,21 +5,4 @@ namespace Icinga\Data\Filter; class FilterMatch extends FilterExpression { - public function matches($row) - { - if (! isset($row->{$this->column})) { - // TODO: REALLY? Exception? - return false; - } - $expression = (string) $this->expression; - if (strpos($expression, '*') === false) { - return (string) $row->{$this->column} === $expression; - } else { - $parts = array(); - foreach (preg_split('/\*/', $expression) as $part) { - $parts[] = preg_quote($part); - } - return preg_match('/^' . implode('.*', $parts) . '$/', $row->{$this->column}); - } - } }