GridStackSkin.php in GridStack 8
File
src/GridStackSkin.php
View source
<?php
namespace Drupal\gridstack;
class GridStackSkin implements GridStackSkinInterface {
public function skins() {
$skins = [
'default' => [
'name' => 'Default',
'provider' => 'gridstack',
'css' => [
'theme' => [
'css/theme/gridstack.theme--default.css' => [],
],
],
],
'selena' => [
'name' => 'Selena',
'provider' => 'gridstack',
'css' => [
'theme' => [
'css/theme/gridstack.theme--selena.css' => [],
],
],
],
];
return $skins;
}
}