You are here

protected function Classes::getPresetRowOptions in GridStack 8.2

1 call to Classes::getPresetRowOptions()
Classes::rowClassesElement in src/Plugin/gridstack/stylizer/Classes.php

File

src/Plugin/gridstack/stylizer/Classes.php, line 239

Class

Classes
Provides the classes styles.

Namespace

Drupal\gridstack\Plugin\gridstack\stylizer

Code

protected function getPresetRowOptions(array $data) {
  $rm = [
    'flex-',
    'justify-content-',
    'align-items-',
    'align-content-',
    'align-self-',
  ];
  return $this
    ->getBasePresetOptions($data, $rm, 'gridstack_classes_preset_row_options');
}