function ComputedTestFieldItemList::computeValue
Same name in other branches
- 9 core/modules/system/tests/modules/entity_test/src/Plugin/Field/ComputedTestFieldItemList.php \Drupal\entity_test\Plugin\Field\ComputedTestFieldItemList::computeValue()
- 8.9.x core/modules/system/tests/modules/entity_test/src/Plugin/Field/ComputedTestFieldItemList.php \Drupal\entity_test\Plugin\Field\ComputedTestFieldItemList::computeValue()
- 11.x core/modules/system/tests/modules/entity_test/src/Plugin/Field/ComputedTestFieldItemList.php \Drupal\entity_test\Plugin\Field\ComputedTestFieldItemList::computeValue()
Compute the list property from state.
Overrides ComputedItemListTrait::computeValue
File
-
core/
modules/ system/ tests/ modules/ entity_test/ src/ Plugin/ Field/ ComputedTestFieldItemList.php, line 18
Class
- ComputedTestFieldItemList
- A computed field item list.
Namespace
Drupal\entity_test\Plugin\FieldCode
protected function computeValue() {
// Count the number of times this method has been executed during the
// lifecycle of an entity.
$execution_count = \Drupal::state()->get('computed_test_field_execution', 0);
\Drupal::state()->set('computed_test_field_execution', ++$execution_count);
foreach (\Drupal::state()->get('entity_test_computed_field_item_list_value', []) as $delta => $item) {
$this->list[$delta] = $this->createItem($delta, $item);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.