Banana.php

Contains \Drupal\plugin_test\Plugin\plugin_test\fruit\Banana.

Namespace

Drupal\plugin_test\Plugin\plugin_test\fruit

File

drupal/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/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;

use Drupal\Component\Annotation\Plugin;
use Drupal\Core\Annotation\Translation;

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

}

Classes

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