You are here

public function GridStackEngineManager::framework in GridStack 8.2

1 call to GridStackEngineManager::framework()
GridStackEngineManager::getClassOptions in src/GridStackEngineManager.php
Returns preset classes with the custom defined for .row or .box__content.

File

src/GridStackEngineManager.php, line 56

Class

GridStackEngineManager
Implements GridStackEngineManagerInterface.

Namespace

Drupal\gridstack

Code

public function framework(array $configuration = []) {
  if (!isset($this->framework)) {
    if ($framework = $this
      ->config('framework')) {
      $this->framework = $this
        ->load($framework, $configuration);
    }
  }
  return $this->framework;
}