You are here

protected function GridStackFormBase::useFramework in GridStack 8.2

Returns TRUE if should use framework.

1 call to GridStackFormBase::useFramework()
GridStackFormBase::form in modules/gridstack_ui/src/Form/GridStackFormBase.php
Gets the actual form array to be built.

File

modules/gridstack_ui/src/Form/GridStackFormBase.php, line 372

Class

GridStackFormBase
Extends base form for gridstack instance configuration form.

Namespace

Drupal\gridstack_ui\Form

Code

protected function useFramework() {
  return $this
    ->gridStack()
    ->getOption('use_framework', FALSE);
}