_values = array_filter( $values, array( 'GF_Query_Condition', 'is_valid_expression_type' ) ); } } /** * Get SQL for this. * * @param GF_Query $query The query. * @param string $delimiter The delimiter to stick the series values with. * * @return string The SQL. */ public function sql( $query, $delimiter = '' ) { $values = array(); foreach( $this->_values as $value ) { $values[] = $value->sql( $query ); } $chunks = array_filter( $values, 'strlen' ); return implode( $delimiter, $chunks); } /** * Proxy read-only values. */ public function __get( $key ) { switch ( $key ): case 'values': return $this->_values; endswitch; } }