public ViewUI::unsetThirdPartySetting($module, $key)
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 1290
Class
- ViewUI
- Stores UI related temporary settings.
Namespace
Drupal\views_ui
Code
public function unsetThirdPartySetting($module, $key) { return $this->storage->unsetThirdPartySetting($module, $key); }
Please login to continue.