netgen / layouts-ezplatform-relation-list-query
基于关系列表字段类型的eZ Platform Netgen Layouts查询
1.4.1
2023-02-15 15:09 UTC
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
此包提供了Netgen Layouts查询,使得可以通过eZ Platform CMS中任何内容中的关系列表字段类型将项目添加到块中。
安装说明
使用Composer
从您的安装根目录运行以下命令以安装该包
$ composer require netgen/layouts-ezplatform-relation-list-query
在您的应用程序内核中激活该包
将以下内容添加到激活包列表中
$bundles = [ ... new Netgen\Bundle\LayoutsEzPlatformRelationListQueryBundle\NetgenLayoutsEzPlatformRelationListQueryBundle(), ... ];
由于在Symfony中其他包的配置前置是如何工作的,为了使此查询类型在现有的eZ Platform查询类型之后显示,您需要将包添加到激活包列表中,在 NetgenLayoutsEzPlaformBundle
之前。