Upgraded imagemagick and manually altered pdf to image module to handle changes....
[yaffs-website] / web / modules / contrib / entity / tests / modules / entity_module_bundle_plugin_test / src / Entity / EntityTestBundlePlugin.php
1 <?php
2
3 namespace Drupal\entity_module_bundle_plugin_test\Entity;
4
5 use Drupal\Core\Entity\ContentEntityBase;
6
7 /**
8  * Defines the 'entity_test_bundle_plugin' entity class.
9  *
10  * @ContentEntityType(
11  *   id = "entity_test_bundle_plugin",
12  *   label = @Translation("Entity test bundle plugin"),
13  *   bundle_label = @Translation("Bundle Plugin Test"),
14  *   bundle_plugin_type = "bundle_plugin_test",
15  *   base_table = "entity_test_bundle_plugin",
16  *   admin_permission = "administer content",
17  *   fieldable = TRUE,
18  *   entity_keys = {
19  *     "id" = "method_id",
20  *     "uuid" = "uuid",
21  *     "bundle" = "type"
22  *   },
23  * )
24  */
25 class EntityTestBundlePlugin extends ContentEntityBase {
26
27 }