You are here

public function TransactionResultMessageItemList::getValue in Transaction 8

Gets the data value.

Return value

mixed The data value.

Overrides ItemList::getValue

File

src/Plugin/Field/TransactionResultMessageItemList.php, line 23

Class

TransactionResultMessageItemList
Item list for the computed field transaction execution result message.

Namespace

Drupal\transaction\Plugin\Field

Code

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