51975264274739eb601dd076afdf913fb5010ae0
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / plugin-manager / yaml / src / ExampleDefault.php.twig
1 <?php
2
3 namespace Drupal\{{ machine_name }};
4
5 use Drupal\Core\Plugin\PluginBase;
6
7 /**
8  * Default class used for {{ plugin_type|plural }} plugins.
9  */
10 class {{ class_prefix }}Default extends PluginBase implements {{ class_prefix }}Interface {
11
12   /**
13    * {@inheritdoc}
14    */
15   public function label() {
16     // The title from YAML file discovery may be a TranslatableMarkup object.
17     return (string) $this->pluginDefinition['label'];
18   }
19
20 }