public function TransactionResultMessageItemList::isEmpty in Transaction 8
Determines whether the list contains any non-empty items.
Return value
bool TRUE if the list is empty, FALSE otherwise.
Overrides ItemList::isEmpty
File
- src/
Plugin/ Field/ TransactionResultMessageItemList.php, line 31
Class
- TransactionResultMessageItemList
- Item list for the computed field transaction execution result message.
Namespace
Drupal\transaction\Plugin\FieldCode
public function isEmpty() {
$this
->ensurePopulated();
return parent::isEmpty();
}