1 query.inc public DatabaseCondition::arguments()

Gets a complete list of all values to insert into the prepared statement.

Return value

array: An associative array of placeholders and values.

Overrides QueryConditionInterface::arguments

File

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

Class

DatabaseCondition
Generic class for a series of conditions in a query.

Code

public function arguments() {
  // If the caller forgot to call compile() first, refuse to run.
  if ($this->changed) {
    return NULL;
  }
  return $this->arguments;
}