You are here

protected function RulesDataProcessor::getPreparedValue in Rules 7.2

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
Contains classes for data processing.

Class

RulesDataProcessor
Common base class for Rules data processors.

Code

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