You are here

public function WebformSubmissionStorageInterface::hasSubmissionValue in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/WebformSubmissionStorageInterface.php \Drupal\webform\WebformSubmissionStorageInterface::hasSubmissionValue()

Determine if a webform element has submission values.

Parameters

\Drupal\webform\WebformInterface $webform: A webform.

string $element_key: An element key.

Return value

bool TRUE if a webform element has submission values.

1 method overrides WebformSubmissionStorageInterface::hasSubmissionValue()
WebformSubmissionStorage::hasSubmissionValue in src/WebformSubmissionStorage.php
Determine if a webform element has submission values.

File

src/WebformSubmissionStorageInterface.php, line 175

Class

WebformSubmissionStorageInterface
Defines an interface for webform submission classes.

Namespace

Drupal\webform

Code

public function hasSubmissionValue(WebformInterface $webform, $element_key);