protected function BaseLayoutBase::getDefaultEqualTopBottomMargin in Layout Builder Base 8
Get the default equal top bottom margin option.
Return value
string Return the default equal top bottom margin option.
1 call to BaseLayoutBase::getDefaultEqualTopBottomMargin()
- BaseLayoutBase::defaultConfiguration in src/
Plugin/ Layout/ BaseLayoutBase.php - Gets default configuration for this plugin.
File
- src/
Plugin/ Layout/ BaseLayoutBase.php, line 678
Class
- BaseLayoutBase
- Configurable layout plugin class.
Namespace
Drupal\layout_builder_base\Plugin\LayoutCode
protected function getDefaultEqualTopBottomMargin() {
$options = $this
->getEqualTopBottomMarginsOptions();
return $this
->getDefaultConfigOption('equal_top_bottom_margins', $options);
}