You are here

GridStackPluginInterface.php in GridStack 8.2

Namespace

Drupal\gridstack

File

src/GridStackPluginInterface.php
View source
<?php

namespace Drupal\gridstack;

use Drupal\Component\Plugin\ConfigurableInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;

/**
 * Provides an interface defining GridStack plugins.
 */
interface GridStackPluginInterface extends ConfigurableInterface, ContainerFactoryPluginInterface {

  /**
   * Returns the plugin label.
   *
   * @return string
   *   The plugin label.
   */
  public function label();

}

Interfaces

Namesort descending Description
GridStackPluginInterface Provides an interface defining GridStack plugins.