You are here

protected function BaseThreeColumnsLayout::getDefaultColumnWidth in Layout Builder Base 8

Get the default column width option.

Return value

string Return the default column width option.

Overrides BaseLayoutBase::getDefaultColumnWidth

File

modules/layout_builder_base_library/src/Plugin/Layout/BaseThreeColumnsLayout.php, line 25

Class

BaseThreeColumnsLayout
Configurable layout plugin class.

Namespace

Drupal\layout_builder_base_library\Plugin\Layout

Code

protected function getDefaultColumnWidth() {
  $options = $this
    ->getColumnWidthOptions();
  return $this
    ->getDefaultConfigOption('three_column_width', $options);
}