You are here

public function ViewUI::getThirdPartySetting in Drupal 8

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

Gets the value of a third-party setting.

Parameters

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

string $key: The setting name.

mixed $default: The default value

Return value

mixed The value.

Overrides ThirdPartySettingsInterface::getThirdPartySetting

File

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

Class

ViewUI
Stores UI related temporary settings.

Namespace

Drupal\views_ui

Code

public function getThirdPartySetting($module, $key, $default = NULL) {
  return $this->storage
    ->getThirdPartySetting($module, $key, $default);
}