| Versionen | |
|---|---|
| drupal7 | public UpdateQuery::fields(array $fields) |
Add a set of field->value pairs to be updated.
$fields An associative array of fields to write into the database. The array keys are the field names while the values are the values to which to set them.
The called object.
includes/
<?php
public function fields(array $fields) {
$this->fields = $fields;
return $this;
}
?>
Kommentare
Kommentar hinzufügen