public function WebformSubmissionStorageInterface::getCustomSetting in Webform 6.x
Same name and namespace in other branches
- 8.5 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 479
Class
- WebformSubmissionStorageInterface
- Defines an interface for webform submission classes.
Namespace
Drupal\webformCode
public function getCustomSetting($name, $default, WebformInterface $webform = NULL, EntityInterface $source_entity = NULL);