You are here

interface WidgetInterface in Synonyms 2.0.x

Interface of a synonyms widget. All widgets must implement it.

Hierarchy

Expanded class hierarchy of WidgetInterface

All classes that implement WidgetInterface

4 files declare their use of WidgetInterface
AutocompleteService.php in modules/synonyms_autocomplete/src/SynonymsService/Behavior/AutocompleteService.php
BehaviorForm.php in src/Form/BehaviorForm.php
BehaviorService.php in src/SynonymsService/BehaviorService.php
SelectService.php in modules/synonyms_select/src/SynonymsService/Behavior/SelectService.php

File

src/BehaviorInterface/WidgetInterface.php, line 8

Namespace

Drupal\synonyms\BehaviorInterface
View source
interface WidgetInterface {

  /**
   * Get human readable title of this widget.
   *
   * @return string
   *   The return title
   */
  public function getWidgetTitle();

}

Members

Namesort descending Modifiers Type Description Overrides
WidgetInterface::getWidgetTitle public function Get human readable title of this widget. 2