You are here

public function GridStackSkinManager::getSkinOptions in GridStack 8.2

Returns available skins for select options.

File

src/GridStackSkinManager.php, line 44

Class

GridStackSkinManager
Implements GridStackSkinManagerInterface.

Namespace

Drupal\gridstack

Code

public function getSkinOptions() {
  if (!isset($this->skinOptions)) {
    $this->skinOptions = $this
      ->getDataOptions($this
      ->getSkins());
  }
  return $this->skinOptions;
}