ParseFilter kann jetzt alle Rose Filter.
authorSven Schöling <s.schoeling@linet-services.de>
Thu, 5 Jan 2012 09:53:02 +0000 (10:53 +0100)
committerSven Schöling <s.schoeling@linet-services.de>
Mon, 23 Apr 2012 16:16:12 +0000 (18:16 +0200)
SL/Controller/Helper/ParseFilter.pm

index 7c393b0..61b819c 100644 (file)
@@ -20,11 +20,10 @@ my %filters = (
 );
 
 my %methods = (
-  lt     => sub { +{ lt    => $_[0] } },
-  gt     => sub { +{ gt    => $_[0] } },
-  ilike  => sub { +{ ilike => $_[0] } },
-  like   => sub { +{ like  => $_[0] } },
   enable => sub { ;;;; },
+  map {
+    $_   => sub { +{ $_    => $_[0] } },
+  } qw(similar match imatch regex regexp like ilike rlike is is_not ne eq lt gt le ge),
 );
 
 sub parse_filter {