You are here

public function ComputedItemList::getValue in Salesforce Suite 8.3

Gets the data value.

Return value

mixed The data value.

Overrides ItemList::getValue

File

modules/salesforce_mapping/src/Plugin/Field/ComputedItemList.php, line 25

Class

ComputedItemList
Lifted from https://www.drupal.org/docs/8/api/entity-api/dynamicvirtual-field-values....

Namespace

Drupal\salesforce_mapping\Plugin\Field

Code

public function getValue() {
  $this
    ->ensurePopulated();
  return parent::getValue();
}