You are here

protected function BaseOneColumnLayout::getLeftMarginOptions in Layout Builder Base 8

Gets the left margin options for the configuration form.

Return value

string[] The left margin options array where the keys are strings that will be added to the CSS classes and the values are the human readable labels.

Overrides DefaultLayoutBase::getLeftMarginOptions

File

modules/layout_builder_base_library/src/Plugin/Layout/BaseOneColumnLayout.php, line 164

Class

BaseOneColumnLayout
Configurable layout plugin class.

Namespace

Drupal\layout_builder_base_library\Plugin\Layout

Code

protected function getLeftMarginOptions() {
  $options = [
    '' => $this
      ->t('Choose'),
    'layout--left-margin--none' => $this
      ->t('None'),
    'layout--left-margin--small' => $this
      ->t('Small margin'),
    'layout--left-margin--default' => $this
      ->t('Default margin'),
    'layout--left-margin--big' => $this
      ->t('Big margin'),
  ];
  $this->moduleHandler
    ->alter('layout_builder_base_left_margin', $options);
  return $options;
}