You are here

function hook_layout_builder_base_left_right_margins_alter in Layout Builder Base 8

Alters the left right margins options provided in \Drupal\layout_builder_base_library\Plugin\Layout\BaseOneColumnLayout.

Parameters

array $options: The array of options for the left right margins.

1 function implements hook_layout_builder_base_left_right_margins_alter()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

layout_builder_base_layout_builder_base_left_right_margins_alter in ./layout_builder_base.module
Implements hook_layout_builder_base_left_right_margins_alter().
1 invocation of hook_layout_builder_base_left_right_margins_alter()
BaseOneColumnLayout::getEqualLeftRightMarginsOptions in modules/layout_builder_base_library/src/Plugin/Layout/BaseOneColumnLayout.php
Gets the left and right equal margin options for the configuration form.

File

./layout_builder_base.api.php, line 119
Hooks related to Layout Builder Base and its plugins.

Code

function hook_layout_builder_base_left_right_margins_alter(array &$options) {
  $options['option-class'] = 'Option';
}