public function ViewUI::unsetThirdPartySetting in Drupal 9
Same name and namespace in other branches
- 8 core/modules/views_ui/src/ViewUI.php \Drupal\views_ui\ViewUI::unsetThirdPartySetting()
Unsets a third-party setting.
Parameters
string $module: The module providing the third-party setting.
string $key: The setting name.
Return value
mixed The value.
Overrides ThirdPartySettingsInterface::unsetThirdPartySetting
File
- core/
modules/ views_ui/ src/ ViewUI.php, line 1274
Class
- ViewUI
- Stores UI related temporary settings.
Namespace
Drupal\views_uiCode
public function unsetThirdPartySetting($module, $key) {
return $this->storage
->unsetThirdPartySetting($module, $key);
}