├── .editorconfig ├── .github └── workflows │ ├── coding_standards.yml │ ├── static_analysis.yml │ └── tests.yml ├── .gitignore ├── .php-cs-fixer.php ├── INSTALL.md ├── LICENSE ├── README.md ├── bundle ├── DependencyInjection │ ├── CompilerPass │ │ └── EzPlatformDefaultPreviewPass.php │ └── NetgenContentBrowserEzPlatformExtension.php ├── EventListener │ └── EzPlatform │ │ ├── SetLocationContentTypesListener.php │ │ └── SetSectionsListener.php ├── NetgenContentBrowserEzPlatformBundle.php └── Resources │ ├── config │ ├── config.yaml │ ├── default_settings.yaml │ ├── eztags │ │ ├── config.yaml │ │ └── services.yaml │ ├── image.yaml │ └── services.yaml │ ├── translations │ └── ngcb.en.yaml │ └── views │ ├── ezplatform │ ├── columns │ │ └── thumbnail.html.twig │ ├── item.html.twig │ └── ngcb_preview.html.twig │ └── eztags │ └── item.html.twig ├── composer.json ├── lib ├── Backend │ ├── EzPlatformBackend.php │ └── EzTagsBackend.php └── Item │ ├── ColumnProvider │ └── ColumnValueProvider │ │ ├── EzPlatform │ │ ├── ContentId.php │ │ ├── ContentType.php │ │ ├── LocationId.php │ │ ├── Modified.php │ │ ├── ObjectState.php │ │ ├── Owner.php │ │ ├── Priority.php │ │ ├── Published.php │ │ ├── Section.php │ │ └── Visible.php │ │ └── EzTags │ │ ├── Modified.php │ │ ├── ParentTag.php │ │ ├── ParentTagId.php │ │ └── TagId.php │ ├── EzPlatform │ ├── EzPlatformInterface.php │ └── Item.php │ └── EzTags │ ├── EzTagsInterface.php │ └── Item.php ├── phpstan.neon ├── phpstan.tests.neon ├── phpunit.xml └── tests ├── bundle └── DependencyInjection │ └── CompilerPass │ └── EzPlatformDefaultPreviewPassTest.php └── lib ├── Backend ├── EzPlatformBackendTest.php └── EzTagsBackendTest.php ├── Item ├── ColumnProvider │ └── ColumnValueProvider │ │ ├── EzPlatform │ │ ├── ContentIdTest.php │ │ ├── ContentTypeTest.php │ │ ├── LocationIdTest.php │ │ ├── ModifiedTest.php │ │ ├── ObjectStateTest.php │ │ ├── OwnerTest.php │ │ ├── PriorityTest.php │ │ ├── PublishedTest.php │ │ ├── SectionTest.php │ │ └── VisibleTest.php │ │ └── EzTags │ │ ├── ModifiedTest.php │ │ ├── ParentTagIdTest.php │ │ ├── ParentTagTest.php │ │ └── TagIdTest.php ├── EzPlatform │ └── ItemTest.php └── EzTags │ └── ItemTest.php └── Stubs ├── Item.php └── Location.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/coding_standards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/.github/workflows/coding_standards.yml -------------------------------------------------------------------------------- /.github/workflows/static_analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/.github/workflows/static_analysis.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/README.md -------------------------------------------------------------------------------- /bundle/DependencyInjection/CompilerPass/EzPlatformDefaultPreviewPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/bundle/DependencyInjection/CompilerPass/EzPlatformDefaultPreviewPass.php -------------------------------------------------------------------------------- /bundle/DependencyInjection/NetgenContentBrowserEzPlatformExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/bundle/DependencyInjection/NetgenContentBrowserEzPlatformExtension.php -------------------------------------------------------------------------------- /bundle/EventListener/EzPlatform/SetLocationContentTypesListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/bundle/EventListener/EzPlatform/SetLocationContentTypesListener.php -------------------------------------------------------------------------------- /bundle/EventListener/EzPlatform/SetSectionsListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/bundle/EventListener/EzPlatform/SetSectionsListener.php -------------------------------------------------------------------------------- /bundle/NetgenContentBrowserEzPlatformBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/bundle/NetgenContentBrowserEzPlatformBundle.php -------------------------------------------------------------------------------- /bundle/Resources/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/bundle/Resources/config/config.yaml -------------------------------------------------------------------------------- /bundle/Resources/config/default_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/bundle/Resources/config/default_settings.yaml -------------------------------------------------------------------------------- /bundle/Resources/config/eztags/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/bundle/Resources/config/eztags/config.yaml -------------------------------------------------------------------------------- /bundle/Resources/config/eztags/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/bundle/Resources/config/eztags/services.yaml -------------------------------------------------------------------------------- /bundle/Resources/config/image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/bundle/Resources/config/image.yaml -------------------------------------------------------------------------------- /bundle/Resources/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/bundle/Resources/config/services.yaml -------------------------------------------------------------------------------- /bundle/Resources/translations/ngcb.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/bundle/Resources/translations/ngcb.en.yaml -------------------------------------------------------------------------------- /bundle/Resources/views/ezplatform/columns/thumbnail.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/bundle/Resources/views/ezplatform/columns/thumbnail.html.twig -------------------------------------------------------------------------------- /bundle/Resources/views/ezplatform/item.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/bundle/Resources/views/ezplatform/item.html.twig -------------------------------------------------------------------------------- /bundle/Resources/views/ezplatform/ngcb_preview.html.twig: -------------------------------------------------------------------------------- 1 | {{ content.name }} 2 | -------------------------------------------------------------------------------- /bundle/Resources/views/eztags/item.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/bundle/Resources/views/eztags/item.html.twig -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/composer.json -------------------------------------------------------------------------------- /lib/Backend/EzPlatformBackend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Backend/EzPlatformBackend.php -------------------------------------------------------------------------------- /lib/Backend/EzTagsBackend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Backend/EzTagsBackend.php -------------------------------------------------------------------------------- /lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/ContentId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/ContentId.php -------------------------------------------------------------------------------- /lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/ContentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/ContentType.php -------------------------------------------------------------------------------- /lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/LocationId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/LocationId.php -------------------------------------------------------------------------------- /lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/Modified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/Modified.php -------------------------------------------------------------------------------- /lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/ObjectState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/ObjectState.php -------------------------------------------------------------------------------- /lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/Owner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/Owner.php -------------------------------------------------------------------------------- /lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/Priority.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/Priority.php -------------------------------------------------------------------------------- /lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/Published.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/Published.php -------------------------------------------------------------------------------- /lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/Section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/Section.php -------------------------------------------------------------------------------- /lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/Visible.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/Visible.php -------------------------------------------------------------------------------- /lib/Item/ColumnProvider/ColumnValueProvider/EzTags/Modified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/ColumnProvider/ColumnValueProvider/EzTags/Modified.php -------------------------------------------------------------------------------- /lib/Item/ColumnProvider/ColumnValueProvider/EzTags/ParentTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/ColumnProvider/ColumnValueProvider/EzTags/ParentTag.php -------------------------------------------------------------------------------- /lib/Item/ColumnProvider/ColumnValueProvider/EzTags/ParentTagId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/ColumnProvider/ColumnValueProvider/EzTags/ParentTagId.php -------------------------------------------------------------------------------- /lib/Item/ColumnProvider/ColumnValueProvider/EzTags/TagId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/ColumnProvider/ColumnValueProvider/EzTags/TagId.php -------------------------------------------------------------------------------- /lib/Item/EzPlatform/EzPlatformInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/EzPlatform/EzPlatformInterface.php -------------------------------------------------------------------------------- /lib/Item/EzPlatform/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/EzPlatform/Item.php -------------------------------------------------------------------------------- /lib/Item/EzTags/EzTagsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/EzTags/EzTagsInterface.php -------------------------------------------------------------------------------- /lib/Item/EzTags/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/lib/Item/EzTags/Item.php -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpstan.tests.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/phpstan.tests.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/phpunit.xml -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/CompilerPass/EzPlatformDefaultPreviewPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/bundle/DependencyInjection/CompilerPass/EzPlatformDefaultPreviewPassTest.php -------------------------------------------------------------------------------- /tests/lib/Backend/EzPlatformBackendTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Backend/EzPlatformBackendTest.php -------------------------------------------------------------------------------- /tests/lib/Backend/EzTagsBackendTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Backend/EzTagsBackendTest.php -------------------------------------------------------------------------------- /tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/ContentIdTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/ContentIdTest.php -------------------------------------------------------------------------------- /tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/ContentTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/ContentTypeTest.php -------------------------------------------------------------------------------- /tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/LocationIdTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/LocationIdTest.php -------------------------------------------------------------------------------- /tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/ModifiedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/ModifiedTest.php -------------------------------------------------------------------------------- /tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/ObjectStateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/ObjectStateTest.php -------------------------------------------------------------------------------- /tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/OwnerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/OwnerTest.php -------------------------------------------------------------------------------- /tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/PriorityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/PriorityTest.php -------------------------------------------------------------------------------- /tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/PublishedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/PublishedTest.php -------------------------------------------------------------------------------- /tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/SectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/SectionTest.php -------------------------------------------------------------------------------- /tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/VisibleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Item/ColumnProvider/ColumnValueProvider/EzPlatform/VisibleTest.php -------------------------------------------------------------------------------- /tests/lib/Item/ColumnProvider/ColumnValueProvider/EzTags/ModifiedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Item/ColumnProvider/ColumnValueProvider/EzTags/ModifiedTest.php -------------------------------------------------------------------------------- /tests/lib/Item/ColumnProvider/ColumnValueProvider/EzTags/ParentTagIdTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Item/ColumnProvider/ColumnValueProvider/EzTags/ParentTagIdTest.php -------------------------------------------------------------------------------- /tests/lib/Item/ColumnProvider/ColumnValueProvider/EzTags/ParentTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Item/ColumnProvider/ColumnValueProvider/EzTags/ParentTagTest.php -------------------------------------------------------------------------------- /tests/lib/Item/ColumnProvider/ColumnValueProvider/EzTags/TagIdTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Item/ColumnProvider/ColumnValueProvider/EzTags/TagIdTest.php -------------------------------------------------------------------------------- /tests/lib/Item/EzPlatform/ItemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Item/EzPlatform/ItemTest.php -------------------------------------------------------------------------------- /tests/lib/Item/EzTags/ItemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Item/EzTags/ItemTest.php -------------------------------------------------------------------------------- /tests/lib/Stubs/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Stubs/Item.php -------------------------------------------------------------------------------- /tests/lib/Stubs/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgen-layouts/content-browser-ezplatform/HEAD/tests/lib/Stubs/Location.php --------------------------------------------------------------------------------