You are here

GridStackStylizerInterface.php in GridStack 8.2

Namespace

Drupal\gridstack

File

src/GridStackStylizerInterface.php
View 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

Namesort descending Description
GridStackStylizerInterface Provides an interface defining GridStack stylizer.