You are here

protected function FieldItemList::createItem in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Field/FieldItemList.php \Drupal\Core\Field\FieldItemList::createItem()

Helper for creating a list item object.

Return value

\Drupal\Core\TypedData\TypedDataInterface

Overrides ItemList::createItem

4 calls to FieldItemList::createItem()
ComputedReferenceTestFieldItemList::computeValue in core/modules/system/tests/modules/entity_test/src/Plugin/Field/ComputedReferenceTestFieldItemList.php
Compute the list property from state.
ComputedTestFieldItemList::computeValue in core/modules/system/tests/modules/entity_test/src/Plugin/Field/ComputedTestFieldItemList.php
Compute the list property from state.
ModerationStateFieldItemList::computeValue in core/modules/content_moderation/src/Plugin/Field/ModerationStateFieldItemList.php
Computes the values for an item list.
PathFieldItemList::computeValue in core/modules/path/src/Plugin/Field/FieldType/PathFieldItemList.php
Computes the values for an item list.

File

core/lib/Drupal/Core/Field/FieldItemList.php, line 40

Class

FieldItemList
Represents an entity field; that is, a list of field item objects.

Namespace

Drupal\Core\Field

Code

protected function createItem($offset = 0, $value = NULL) {
  return \Drupal::service('plugin.manager.field.field_type')
    ->createFieldItem($this, $offset, $value);
}