function ComputedTestFieldItemList::computeValue

Same name in other branches
  1. 9 core/modules/system/tests/modules/entity_test/src/Plugin/Field/ComputedTestFieldItemList.php \Drupal\entity_test\Plugin\Field\ComputedTestFieldItemList::computeValue()
  2. 8.9.x core/modules/system/tests/modules/entity_test/src/Plugin/Field/ComputedTestFieldItemList.php \Drupal\entity_test\Plugin\Field\ComputedTestFieldItemList::computeValue()
  3. 10 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 20

Class

ComputedTestFieldItemList
A computed field item list.

Namespace

Drupal\entity_test\Plugin\Field

Code

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.