public function Webform::unsetThirdPartySettings in Webform 8.5
Same name and namespace in other branches
- 6.x src/Entity/Webform.php \Drupal\webform\Entity\Webform::unsetThirdPartySettings()
Unsets all third-party settings of a given module.
Parameters
string $module: The module providing the third-party settings.
Overrides WebformInterface::unsetThirdPartySettings
File
- src/
Entity/ Webform.php, line 3192
Class
- Webform
- Defines the webform entity.
Namespace
Drupal\webform\EntityCode
public function unsetThirdPartySettings($module) {
unset($this->third_party_settings[$module]);
}