GridStackExampleSkin.php in GridStack 8
File
modules/gridstack_example/src/GridStackExampleSkin.php
View source
<?php
namespace Drupal\gridstack_example;
use Drupal\gridstack\GridStackSkinInterface;
class GridStackExampleSkin implements GridStackSkinInterface {
public function skins() {
$path = base_path() . drupal_get_path('module', 'gridstack_example');
$skins = [
'zoe' => [
'name' => 'X: Zoe',
'provider' => 'gridstack_example',
'css' => [
'theme' => [
$path . '/css/gridstack.theme--zoe.css' => [],
],
],
],
];
return $skins;
}
}