You are here

public function GridStackStylizer::form in GridStack 8.2

File

src/GridStackStylizer.php, line 123

Class

GridStackStylizer
Implements GridStackStylizerInterface.

Namespace

Drupal\gridstack

Code

public function form(array $configuration = [], $reload = FALSE) {
  if (!isset($this->form) || $reload) {
    $this->form = $this
      ->loadStyle('form', $configuration, $reload);
  }
  return $this->form;
}