Ingo_Storage_FilterIterator_Skip::accept PHP Method

accept() public method

public accept ( )
    public function accept()
    {
        $ob = $this->current();
        foreach ($this->_filters as $val) {
            if ($ob instanceof $val) {
                return false;
            }
        }
        return true;
    }
Ingo_Storage_FilterIterator_Skip