public function Merge::updateFields in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Database/Query/Merge.php \Drupal\Core\Database\Query\Merge::updateFields()
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\Merge The called object.
File
- core/
lib/ Drupal/ Core/ Database/ Query/ Merge.php, line 172 - Contains \Drupal\Core\Database\Query\Merge.
Class
- Merge
- General class for an abstracted MERGE query operation.
Namespace
Drupal\Core\Database\QueryCode
public function updateFields(array $fields) {
$this->updateFields = $fields;
$this->needsUpdate = TRUE;
return $this;
}