You are here

Banana.php in Zircon Profile 8.0

File

core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/Banana.php
View source
<?php

/**
 * @file
 * Contains \Drupal\plugin_test\Plugin\plugin_test\fruit\Banana.
 */
namespace Drupal\plugin_test\Plugin\plugin_test\fruit;


/**
 * @Plugin(
 *   id = "banana",
 *   label = "Banana",
 *   color = "yellow",
 *   uses = {
 *     "bread" = @Translation("Banana bread")
 *   }
 * )
 */
class Banana implements FruitInterface {

}

Classes

Namesort descending Description
Banana Plugin annotation @Plugin( id = "banana", label = "Banana", color = "yellow", uses = { "bread" = @Translation("Banana bread") } )