├── LICENSE.md ├── README.md ├── composer.json ├── discoverable_entity_bundle_classes.info.yml ├── discoverable_entity_bundle_classes.module ├── discoverable_entity_bundle_classes.services.yml ├── docs └── assets │ ├── example-1--location-after.png │ └── example-1--location-before.png ├── modules ├── discoverable_entity_bundle_classes_paragraphs │ ├── README.md │ ├── discoverable_entity_bundle_classes_paragraphs.info.yml │ └── discoverable_entity_bundle_classes_paragraphs.module └── discoverable_entity_bundle_classes_taxonomy │ ├── discoverable_entity_bundle_classes_taxonomy.info.yml │ └── discoverable_entity_bundle_classes_taxonomy.module └── src ├── Annotation └── ContentEntityBundleClass.php ├── ContentEntityBundleClassManager.php ├── ContentEntityBundleClassManagerInterface.php ├── ContentEntityBundleClassPlugin.php ├── ContentEntityBundleInterface.php ├── EventSubscriber └── EntityViewSubscriber.php ├── Storage ├── Comment │ └── CommentStorage.php ├── Media │ └── MediaStorage.php ├── Node │ └── NodeStorage.php ├── SqlContentEntityStorage.php ├── SqlContentEntityStorageTrait.php └── Taxonomy │ └── TermStorage.php └── UsesContentEntityBundleClassManagerTrait.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/composer.json -------------------------------------------------------------------------------- /discoverable_entity_bundle_classes.info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/discoverable_entity_bundle_classes.info.yml -------------------------------------------------------------------------------- /discoverable_entity_bundle_classes.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/discoverable_entity_bundle_classes.module -------------------------------------------------------------------------------- /discoverable_entity_bundle_classes.services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/discoverable_entity_bundle_classes.services.yml -------------------------------------------------------------------------------- /docs/assets/example-1--location-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/docs/assets/example-1--location-after.png -------------------------------------------------------------------------------- /docs/assets/example-1--location-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/docs/assets/example-1--location-before.png -------------------------------------------------------------------------------- /modules/discoverable_entity_bundle_classes_paragraphs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/modules/discoverable_entity_bundle_classes_paragraphs/README.md -------------------------------------------------------------------------------- /modules/discoverable_entity_bundle_classes_paragraphs/discoverable_entity_bundle_classes_paragraphs.info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/modules/discoverable_entity_bundle_classes_paragraphs/discoverable_entity_bundle_classes_paragraphs.info.yml -------------------------------------------------------------------------------- /modules/discoverable_entity_bundle_classes_paragraphs/discoverable_entity_bundle_classes_paragraphs.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/modules/discoverable_entity_bundle_classes_paragraphs/discoverable_entity_bundle_classes_paragraphs.module -------------------------------------------------------------------------------- /modules/discoverable_entity_bundle_classes_taxonomy/discoverable_entity_bundle_classes_taxonomy.info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/modules/discoverable_entity_bundle_classes_taxonomy/discoverable_entity_bundle_classes_taxonomy.info.yml -------------------------------------------------------------------------------- /modules/discoverable_entity_bundle_classes_taxonomy/discoverable_entity_bundle_classes_taxonomy.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/modules/discoverable_entity_bundle_classes_taxonomy/discoverable_entity_bundle_classes_taxonomy.module -------------------------------------------------------------------------------- /src/Annotation/ContentEntityBundleClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/src/Annotation/ContentEntityBundleClass.php -------------------------------------------------------------------------------- /src/ContentEntityBundleClassManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/src/ContentEntityBundleClassManager.php -------------------------------------------------------------------------------- /src/ContentEntityBundleClassManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/src/ContentEntityBundleClassManagerInterface.php -------------------------------------------------------------------------------- /src/ContentEntityBundleClassPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/src/ContentEntityBundleClassPlugin.php -------------------------------------------------------------------------------- /src/ContentEntityBundleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/src/ContentEntityBundleInterface.php -------------------------------------------------------------------------------- /src/EventSubscriber/EntityViewSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/src/EventSubscriber/EntityViewSubscriber.php -------------------------------------------------------------------------------- /src/Storage/Comment/CommentStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/src/Storage/Comment/CommentStorage.php -------------------------------------------------------------------------------- /src/Storage/Media/MediaStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/src/Storage/Media/MediaStorage.php -------------------------------------------------------------------------------- /src/Storage/Node/NodeStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/src/Storage/Node/NodeStorage.php -------------------------------------------------------------------------------- /src/Storage/SqlContentEntityStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/src/Storage/SqlContentEntityStorage.php -------------------------------------------------------------------------------- /src/Storage/SqlContentEntityStorageTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/src/Storage/SqlContentEntityStorageTrait.php -------------------------------------------------------------------------------- /src/Storage/Taxonomy/TermStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/src/Storage/Taxonomy/TermStorage.php -------------------------------------------------------------------------------- /src/UsesContentEntityBundleClassManagerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amcgowanca/discoverable_entity_bundle_classes/HEAD/src/UsesContentEntityBundleClassManagerTrait.php --------------------------------------------------------------------------------