You are here

protected function Extras::isWideRegionOption in GridStack 8.2

Checks if an option should be for 12 column wide.

1 call to Extras::isWideRegionOption()
Extras::extrasElement in src/Plugin/gridstack/stylizer/Extras.php
Provides extras form elements.

File

src/Plugin/gridstack/stylizer/Extras.php, line 103

Class

Extras
Provides the extras styles.

Namespace

Drupal\gridstack\Plugin\gridstack\stylizer

Code

protected function isWideRegionOption($key) {
  return in_array($key, [
    'ete',
    'contentless',
    'parallax',
    'parallax-fs',
  ]);
}