You are here

function gridstack_example_gridstack_skins_info in GridStack 8

Implements hook_gridstack_skins_info().

To provide own skins, simply provide the legit class namespace, and the class must implement \Drupal\gridstack\GridStackSkinInterface.

See also

\Drupal\gridstack\GridStackSkinInterface

File

modules/gridstack_example/gridstack_example.module, line 18
Provides GridStack examples.

Code

function gridstack_example_gridstack_skins_info() {
  return '\\Drupal\\gridstack_example\\GridStackExampleSkin';
}