ViewUI::setThirdPartySetting

public ViewUI::setThirdPartySetting($module, $key, $value)

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 1269

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);
}
doc_Drupal
2016-10-29 09:56:05
Comments
Leave a Comment

Please login to continue.