Upgraded imagemagick and manually altered pdf to image module to handle changes....
[yaffs-website] / web / modules / contrib / entity / src / BundlePlugin / BundlePluginInterface.php
1 <?php
2
3 namespace Drupal\entity\BundlePlugin;
4
5 use Drupal\Component\Plugin\PluginInspectionInterface;
6
7 /**
8  * Interface for plugins which act as entity bundles.
9  */
10 interface BundlePluginInterface extends PluginInspectionInterface {
11
12   /**
13    * Builds the field definitions for entities of this bundle.
14    *
15    * Important:
16    * Field names must be unique across all bundles.
17    * It is recommended to prefix them with the bundle name (plugin ID).
18    *
19    * @return \Drupal\entity\BundleFieldDefinition[]
20    *   An array of bundle field definitions, keyed by field name.
21    */
22   public function buildFieldDefinitions();
23
24 }