You are here

public function ViewUI::unsetThirdPartySetting in Drupal 9

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

Code

public function unsetThirdPartySetting($module, $key) {
  return $this->storage
    ->unsetThirdPartySetting($module, $key);
}