protected function BaseLayoutBase::getDefaultColumnBreakpoint in Layout Builder Base 8
Get the default column breakpoint option.
Return value
string Return the default column breakpoint option.
1 call to BaseLayoutBase::getDefaultColumnBreakpoint()
- BaseLayoutBase::defaultConfiguration in src/
Plugin/ Layout/ BaseLayoutBase.php - Gets default configuration for this plugin.
File
- src/
Plugin/ Layout/ BaseLayoutBase.php, line 887
Class
- BaseLayoutBase
- Configurable layout plugin class.
Namespace
Drupal\layout_builder_base\Plugin\LayoutCode
protected function getDefaultColumnBreakpoint() {
$options = $this
->getColumnBreakpointOptions();
return $this
->getDefaultConfigOption('column_breakpoint', $options);
}