You are here

public function DashboardSectionStorage::getThirdPartySettings in Dashboards with Layout Builder 8

Same name and namespace in other branches
  1. 2.0.x 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 243

Class

DashboardSectionStorage
Dashboard section storage.

Namespace

Drupal\dashboards\Plugin\SectionStorage

Code

public function getThirdPartySettings($module) {
  return $this
    ->getDashboard()
    ->getThirdPartySettings($module);
}