You are here

public function Update::fields in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Database/Query/Update.php \Drupal\Core\Database\Query\Update::fields()

Adds a set of field->value pairs to be updated.

Parameters

$fields: An associative array of fields to write into the database. The array keys are the field names and the values are the values to which to set them.

Return value

\Drupal\Core\Database\Query\Update The called object.

File

core/lib/Drupal/Core/Database/Query/Update.php, line 86
Contains \Drupal\Core\Database\Query\Update.

Class

Update
General class for an abstracted UPDATE operation.

Namespace

Drupal\Core\Database\Query

Code

public function fields(array $fields) {
  $this->fields = $fields;
  return $this;
}