public function DefaultsSectionStorage::unsetThirdPartySetting in Drupal 8
Same name and namespace in other branches
- 9 core/modules/layout_builder/src/Plugin/SectionStorage/DefaultsSectionStorage.php \Drupal\layout_builder\Plugin\SectionStorage\DefaultsSectionStorage::unsetThirdPartySetting()
Unsets a third-party setting.
Parameters
string $module: The module providing the third-party setting.
string $key: The setting name.
Return value
mixed The value.
Overrides ThirdPartySettingsInterface::unsetThirdPartySetting
File
- core/
modules/ layout_builder/ src/ Plugin/ SectionStorage/ DefaultsSectionStorage.php, line 409
Class
- DefaultsSectionStorage
- Defines the 'defaults' section storage type.
Namespace
Drupal\layout_builder\Plugin\SectionStorageCode
public function unsetThirdPartySetting($module, $key) {
$this
->getDisplay()
->unsetThirdPartySetting($module, $key);
return $this;
}