WidgetInterface.php in Synonyms 2.0.x
Namespace
Drupal\synonyms\BehaviorInterfaceFile
src/BehaviorInterface/WidgetInterface.phpView source
<?php
namespace Drupal\synonyms\BehaviorInterface;
/**
* Interface of a synonyms widget. All widgets must implement it.
*/
interface WidgetInterface {
/**
* Get human readable title of this widget.
*
* @return string
* The return title
*/
public function getWidgetTitle();
}
Interfaces
Name | Description |
---|---|
WidgetInterface | Interface of a synonyms widget. All widgets must implement it. |