function RulesDataProcessor::getPreparedValue

Return $this or skip this processor by returning the next processor.

1 method overrides RulesDataProcessor::getPreparedValue()
RulesDataInputEvaluator::getPreparedValue in includes/rules.processor.inc
Return $this or skip this processor by returning the next processor.

File

includes/rules.processor.inc, line 38

Class

RulesDataProcessor
Common base class for Rules data processors.

Code

protected function getPreparedValue() {
    return isset($this->setting) && array_filter($this->setting) ? $this : $this->processor;
}