Apple.php

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

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

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

use Drupal\Core\Annotation\Plugin;

/**
 * @Plugin(
 *   id = "apple",
 *   label = "Apple",
 *   color = "green"
 * )
 */
class Apple {

}

Classes

Namesort descending Description
Apple Plugin annotation @Plugin( id = "apple", label = "Apple", color = "green" )