You are here

public function CalculatedLinkItemBase::isEmpty in Salesforce Suite 8.3

Determines whether the data structure is empty.

Return value

bool TRUE if the data structure is empty, FALSE otherwise.

Overrides LinkItem::isEmpty

File

modules/salesforce_mapping/src/Plugin/Field/CalculatedLinkItemBase.php, line 32

Class

CalculatedLinkItemBase
Calculated link item.

Namespace

Drupal\salesforce_mapping\Plugin\Field

Code

public function isEmpty() {
  $this
    ->ensureCalculated();
  return parent::isEmpty();
}