Cherry.php

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

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

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

use Drupal\Core\Annotation\Plugin;

/**
 * @Plugin(
 *   id = "cherry",
 *   label = "Cherry",
 *   color = "red"
 * )
 */
class Cherry {

}

Classes

Namesort descending Description
Cherry Plugin annotation @Plugin( id = "cherry", label = "Cherry", color = "red" )