You are here

public function LayoutParagraphsLayout::getThirdPartySettings in Layout Paragraphs 2.0.x

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/LayoutParagraphsLayout.php, line 511

Class

LayoutParagraphsLayout
Provides a domain object for a complete Layout Paragraphs Layout.

Namespace

Drupal\layout_paragraphs

Code

public function getThirdPartySettings($provider) {
  return isset($this->thirdPartySettings[$provider]) ? $this->thirdPartySettings[$provider] : [];
}