You are here

public function Webform::unsetThirdPartySettings in Webform 6.x

Same name and namespace in other branches
  1. 8.5 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 3193

Class

Webform
Defines the webform entity.

Namespace

Drupal\webform\Entity

Code

public function unsetThirdPartySettings($module) {
  unset($this->third_party_settings[$module]);
}