You are here

public function ViewUI::setThirdPartySetting in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views_ui/src/ViewUI.php \Drupal\views_ui\ViewUI::setThirdPartySetting()
  2. 10 core/modules/views_ui/src/ViewUI.php \Drupal\views_ui\ViewUI::setThirdPartySetting()

Sets the value of a third-party setting.

Parameters

string $module: The module providing the third-party setting.

string $key: The setting name.

mixed $value: The setting value.

Return value

$this

Overrides ThirdPartySettingsInterface::setThirdPartySetting

File

core/modules/views_ui/src/ViewUI.php, line 1277

Class

ViewUI
Stores UI related temporary settings.

Namespace

Drupal\views_ui

Code

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