You are here

protected function BaseLayoutBase::getDefaultBottomPadding in Layout Builder Base 8

Get the default bottom padding option.

Return value

string Return the default bottom padding option.

1 call to BaseLayoutBase::getDefaultBottomPadding()
BaseLayoutBase::defaultConfiguration in src/Plugin/Layout/BaseLayoutBase.php
Gets default configuration for this plugin.

File

src/Plugin/Layout/BaseLayoutBase.php, line 788

Class

BaseLayoutBase
Configurable layout plugin class.

Namespace

Drupal\layout_builder_base\Plugin\Layout

Code

protected function getDefaultBottomPadding() {
  $options = $this
    ->getBottomPaddingOptions();
  return $this
    ->getDefaultConfigOption('bottom_padding', $options);
}