'3.0', ); } /** * Iterable implementation for testing iterator display. */ class ViewsRulesTestIterable implements ViewsRulesIterable { public $rows = array(); /** * Evaluates a view row in the loop. */ public function evaluateRow(array $data) { $this->rows[] = $data; } public function reset() { $this->rows = array(); return $this; } }