public function ViewUI::getThirdPartySettings in Drupal 8
Same name and namespace in other branches
- 9 core/modules/views_ui/src/ViewUI.php \Drupal\views_ui\ViewUI::getThirdPartySettings()
Gets all third-party settings of a given module.
Parameters
string $module: The module providing the third-party settings.
Return value
array An array of key-value pairs.
Overrides ThirdPartySettingsInterface::getThirdPartySettings
File
- core/
modules/ views_ui/ src/ ViewUI.php, line 1291
Class
- ViewUI
- Stores UI related temporary settings.
Namespace
Drupal\views_uiCode
public function getThirdPartySettings($module) {
return $this->storage
->getThirdPartySettings($module);
}