You are here

protected function BaseLayoutBase::getDefaultEqualTopBottomPadding in Layout Builder Base 8

Get the default equal top bottom padding option.

Return value

string Return the default equal top bottom padding option.

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

File

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

Class

BaseLayoutBase
Configurable layout plugin class.

Namespace

Drupal\layout_builder_base\Plugin\Layout

Code

protected function getDefaultEqualTopBottomPadding() {
  $options = $this
    ->getEqualTopBottomPaddingsOptions();
  return $this
    ->getDefaultConfigOption('equal_top_bottom_paddings', $options);
}