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); }
Please login to continue.