b1e31e1ed5ce9da51546441a8d3bc357ef8a2f1b
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / plugin-manager / annotation / src / Plugin / Example / Foo.php.twig
1 <?php
2
3 namespace Drupal\{{ machine_name }}\Plugin\{{ class_prefix }};
4
5 use Drupal\{{ machine_name }}\{{ class_prefix }}PluginBase;
6
7 /**
8  * Plugin implementation of the {{ plugin_type }}.
9  *
10  * @{{ class_prefix }}(
11  *   id = "foo",
12  *   label = @Translation("Foo"),
13  *   description = @Translation("Foo description.")
14  * )
15  */
16 class Foo extends {{ class_prefix }}PluginBase {
17
18 }