Kernel::System::Configuration::Helper::List::Filter::Clause

NAME

Kernel::System::Configuration::Helper::List::Filter::Clause

DESCRIPTION

Base class/module for the filter clauses.

has Column

Attribute that holds the column name that the clause will match.

has Operator

Attribute that holds the comparison operator.

has Value

Attribute that holds the value to be compared to.

Run()

Checks if the record passes the clause.

    my $Result = $Clause->Run(
        Item => {...},
    );

Returns

    1 - success
    0 - failed
Scroll to Top