public function FieldItemList::setLangcode in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Field/FieldItemList.php \Drupal\Core\Field\FieldItemList::setLangcode()
- 9 core/lib/Drupal/Core/Field/FieldItemList.php \Drupal\Core\Field\FieldItemList::setLangcode()
Sets the langcode of the field values held in the object.
Parameters
string $langcode: The langcode.
Overrides FieldItemListInterface::setLangcode
File
- core/
lib/ Drupal/ Core/ Field/ FieldItemList.php, line 56
Class
- FieldItemList
- Represents an entity field; that is, a list of field item objects.
Namespace
Drupal\Core\FieldCode
public function setLangcode($langcode) {
$this->langcode = $langcode;
}