You are here

ResponsiveMenusPluginInterface.php in Responsive Menus 8

File

src/ResponsiveMenusPluginInterface.php
View source
<?php

namespace Drupal\responsive_menus;

use Drupal\Core\Form\FormStateInterface;
use Drupal\Component\Plugin\ConfigurableInterface;

/**
 * Interface ResponsiveMenusInterface.
 *
 * @package Drupal\responsive_menus
 */
interface ResponsiveMenusPluginInterface extends ConfigurableInterface {

  /**
   * Provide UI with plugins selector information.
   */
  public static function getSelectorInfo();

  /**
   * Form constructor.
   *
   * @param array $form
   *   An associative array containing the initial structure of the plugin form.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   The current state of the complete form.
   *
   * @return array
   *   The form structure.
   */
  public function settingsForm(array $form, FormStateInterface $form_state);

  /**
   * Get Drupal Javscript settings array.
   *
   * @return array
   *   The Javascript settings array.
   */
  public function getJsSettings();

}

Interfaces

Namesort descending Description
ResponsiveMenusPluginInterface Interface ResponsiveMenusInterface.