GridStackStylizerInterface.php in GridStack 8.2
Namespace
Drupal\gridstackFile
src/GridStackStylizerInterface.phpView source
<?php
namespace Drupal\gridstack;
/**
* Provides an interface defining GridStack stylizer.
*/
interface GridStackStylizerInterface extends GridStackPluginManagerInterface {
/**
* Returns classes that can be used for select options.
*
* @param bool $flatten
* Whether flattened or grouped.
*
* @return array
* An associative array of grouped, or flattened classes.
*/
public function getMergedClasses($flatten = FALSE);
}
Interfaces
Name | Description |
---|---|
GridStackStylizerInterface | Provides an interface defining GridStack stylizer. |