You are here

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

Sets the value of a third-party setting.

Parameters

string $module: The module providing the third-party setting.

string $key: The setting name.

mixed $value: The setting value.

Return value

$this

Overrides ThirdPartySettingsInterface::setThirdPartySetting

File

src/LayoutParagraphsLayout.php, line 518

Class

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

Namespace

Drupal\layout_paragraphs

Code

public function setThirdPartySetting($provider, $key, $value) {
  $this->thirdPartySettings[$provider][$key] = $value;
  return $this;
}