public ViewUI::getThirdPartySettings($module)
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 1283
Class
- ViewUI
- Stores UI related temporary settings.
Namespace
Drupal\views_ui
Code
public function getThirdPartySettings($module) { return $this->storage->getThirdPartySettings($module); }
Please login to continue.