You are here

public function WebformSubmissionStorageInterface::getCustomSetting in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/WebformSubmissionStorageInterface.php \Drupal\webform\WebformSubmissionStorageInterface::getCustomSetting()

Get customize setting.

Parameters

string $name: Custom settings name.

mixed $default: Custom settings default value.

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

\Drupal\Core\Entity\EntityInterface|null $source_entity: A webform submission source entity.

Return value

mixed Custom setting.

1 method overrides WebformSubmissionStorageInterface::getCustomSetting()
WebformSubmissionStorage::getCustomSetting in src/WebformSubmissionStorage.php
Get customize setting.

File

src/WebformSubmissionStorageInterface.php, line 480

Class

WebformSubmissionStorageInterface
Defines an interface for webform submission classes.

Namespace

Drupal\webform

Code

public function getCustomSetting($name, $default, WebformInterface $webform = NULL, EntityInterface $source_entity = NULL);