Search\Model\Filter\Base::present PHP Method

present() public method

Check if the name is present in the arguments from HTTP GET.
public present ( ) : boolean
return boolean
    public function present()
    {
        return $this->config('alwaysRun') || array_key_exists($this->name(), $this->_args);
    }