You are here

public function GridStackStylizer::style in GridStack 8.2

File

src/GridStackStylizer.php, line 71

Class

GridStackStylizer
Implements GridStackStylizerInterface.

Namespace

Drupal\gridstack

Code

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