public function DashboardSectionStorage::getThirdPartySettings in Dashboards with Layout Builder 2.0.x
Same name and namespace in other branches
- 8 src/Plugin/SectionStorage/DashboardSectionStorage.php \Drupal\dashboards\Plugin\SectionStorage\DashboardSectionStorage::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
- src/
Plugin/ SectionStorage/ DashboardSectionStorage.php, line 289
Class
- DashboardSectionStorage
- Dashboard section storage.
Namespace
Drupal\dashboards\Plugin\SectionStorageCode
public function getThirdPartySettings($module) {
return $this
->getDashboard()
->getThirdPartySettings($module);
}