ViewUI::getThirdPartySetting

public ViewUI::getThirdPartySetting($module, $key, $default = NULL)

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 1276

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

Please login to continue.