Orange.php

Definition of Drupal\plugin_test\Plugin\plugin_test\fruit\Orange.

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/Orange.php
View source
<?php

/**
 * @file
 * Definition of Drupal\plugin_test\Plugin\plugin_test\fruit\Orange.
 */
namespace Drupal\plugin_test\Plugin\plugin_test\fruit;

use Drupal\Core\Annotation\Plugin;

/**
 * @Plugin(
 *   id = "orange",
 *   label = "Orange",
 *   color = "orange"
 * )
 */
class Orange {

}

Classes

Namesort descending Description
Orange Plugin annotation @Plugin( id = "orange", label = "Orange", color = "orange" )