You are here

WidgetInterface.php in Synonyms 2.0.x

File

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

Namesort descending Description
WidgetInterface Interface of a synonyms widget. All widgets must implement it.