netgen / layouts-ezplatform-relation-list-query
Netgen Layouts query based on relation list field type for eZ Platform
Installs: 22 739
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 5
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
Requires (Dev)
- netgen/layouts-coding-standard: ^2.0
- phpstan/phpstan: ^1.9
- phpstan/phpstan-strict-rules: ^1.4
- vimeo/psalm: ^4.30 || ^5.4
Conflicts
- netgen/layouts-relation-list-query: *
README
This bundle provides Netgen Layouts query that makes it possible to add items to block via relation list field type available in any content in eZ Platform CMS.
Installation instructions
Use Composer
Run the following from your installation root to install the package:
$ composer require netgen/layouts-ezplatform-relation-list-query
Activate the bundle in your app kernel
Add the following to the list of activated bundles:
$bundles = [ ... new Netgen\Bundle\LayoutsEzPlatformRelationListQueryBundle\NetgenLayoutsEzPlatformRelationListQueryBundle(), ... ];
Due to how prepending configuration of other bundles works in Symfony, to make
this query type display after the existing eZ Platform query type, you need to
add the bundle BEFORE NetgenLayoutsEzPlaformBundle
in the list of
activated bundles.