function BaseFieldDefinition::setName
Sets the field name.
Parameters
string $name: The field name to set.
Return value
static The object itself for chaining.
File
-
core/
lib/ Drupal/ Core/ Field/ BaseFieldDefinition.php, line 123
Class
- BaseFieldDefinition
- A class for defining entity fields.
Namespace
Drupal\Core\FieldCode
public function setName($name) {
$this->definition['field_name'] = $name;
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.