FruitInterface.php in Plug 7
Namespace
Drupal\plug_example\Plugin\fruitFile
modules/plug_example/src/Plugin/fruit/FruitInterface.phpView source
<?php
/**
* @file
* Contains Drupal\plug_example\Plugin\fruit\FruitInterface
*/
namespace Drupal\plug_example\Plugin\fruit;
interface FruitInterface {
/**
* Displays a fruit.
*
* @return string
* The fruit representation.
*/
public function display();
}
Interfaces
Name | Description |
---|---|
FruitInterface |