public function QueryConditionInterface::conditions

Gets a complete list of all conditions in this conditional clause.

This method returns by reference. That allows alter hooks to access the data structure directly and manipulate it before it gets compiled.

The data structure that is returned is an indexed array of entries, where each entry looks like the following:

array(
  'field' => $field,
  'value' => $value,
  'operator' => $operator,
);

In the special case that $operator is NULL, the $field is taken as a raw SQL snippet (possibly containing a function) and $value is an associative array of placeholders for the snippet.

There will also be a single array entry of #conjunction, which is the conjunction that will be applied to the array, such as AND.

6 methods override QueryConditionInterface::conditions()
DatabaseCondition::conditions in drupal/includes/database/query.inc
Implements QueryConditionInterface::conditions().
DeleteQuery::conditions in drupal/includes/database/query.inc
Implements QueryConditionInterface::conditions().
MergeQuery::conditions in drupal/includes/database/query.inc
Implements QueryConditionInterface::conditions().
SelectQuery::conditions in drupal/includes/database/select.inc
Gets a complete list of all conditions in this conditional clause.
SelectQueryExtender::conditions in drupal/includes/database/select.inc
Gets a complete list of all conditions in this conditional clause.

... See full list

File

drupal/includes/database/query.inc, line 129
Non-specific Database query code. Used by all engines.

Class

QueryConditionInterface
Interface for a conditional clause in a query.

Code

public function &conditions();