erdnaxelaweb/ibexadesignintegration 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

erdnaxelaweb/ibexadesignintegration

最新稳定版本:v0.2.3

Composer 安装命令:

composer require erdnaxelaweb/ibexadesignintegration

包简介

Provide an abstraction layer for the Ibexa CMS in order to streamline the templates development workflow.

README 文档

README

This bundle extends erdnaxelaweb/staticfakedesign to provide an abstraction layer for the Ibexa CMS in order to streamline the templates development workflow.

It serves as a bridge between static design development and the Ibexa CMS by:

  1. Providing a consistent definition model for content types, taxonomy entries, and landing page blocks
  2. Managing transformations between Ibexa's native objects and template-friendly representations
  3. Enabling developers to build and test templates before the CMS integration
  4. Offering a smooth transition from static design to dynamic CMS implementation

Table of Contents

Installation

  1. Add the bundle to your project via Composer:
composer require erdnaxelaweb/ibexadesignintegration
  1. Register the bundle in your config/bundles.php:
return [
    // ...
    ErdnaxelaWeb\IbexaDesignIntegrationBundle\IbexaDesignIntegrationBundle::class => ['all' => true],
];

Features

  • Value Transformers: Specialized services for transforming Ibexa CMS objects (content, fields, blocks) into template-friendly objects
  • Content Abstraction: Consistent interfaces for accessing content data regardless of the underlying implementation
  • Block Management: Enhanced landing page block integration with attribute transformation
  • Taxonomy Integration: Support for Ibexa Taxonomy with transformation capabilities
  • Pagination System: Flexible pager builder with search type system for creating paginated listings
  • Performance Optimization: Lazy-loading mechanisms for improved template rendering performance
  • HTTP Cache Integration: Automatic response tagging for efficient cache invalidation

Usage

Refer to the erdnaxelaweb/staticfakedesign bundle documentation for detailed usage instructions.

Content types

Define content types in a standardized way using the definition pattern:

parameters:
    erdnaxelaweb.static_fake_design.content_definition:
        article:
            name:
                eng-GB: 'Article'
            nameSchema: '<title>'
            urlAliasSchema: '<title>'
            fields:
                title:
                    type: string
                    required: true
                body:
                    type: richtext
                    required: false

Taxonomy entries

Define taxonomy types for categorizing content:

parameters:
    erdnaxelaweb.static_fake_design.taxonomy_entry_definition:
        category:
            fields:
                name:
                    required: true
                    type: string
                identifier:
                    required: true
                    type: string

Landing Page Blocks

Create custom landing page blocks:

ibexa_design_integration:
  system:
    default:
      block_definition:
        featured_articles:
            views:
                default: '@ibexadesign/landing_page/block/featured_articles.html.twig'
            attributes:
                title:
                    type: "string"
                    required: false
                articles:
                    type: "content"
                    required: true
                    options:
                        type: article
                        max: 3

Template Integration

The bundle provide a set of twig functions to integrate templates with the Ibexa CMS.:

  • display_content: Renders a content view template
{{ display_content(<template name>, <content>, <parameters>, <is ESI>, <view type>) }}
{{ display_content('@ibexadesign/content/list/news.html.twig', content, []) }}
  • display_block: Renders a block view template
{{ display_block(<block>, <is ESI>) }}
{{ display_block(block) }}
  • display_component: Renders a component view template
{{ display_component('@ibexadesign/components/footer.html.twig', []) }}
{{ display_component(<template name>, <parameters>, <controller action>, <is ESI>) }}

Thoses functions are used to switch between include and render depending on the context (static or dynamic version).

Rules for view template integration

  1. A content view template should always be associated with a content object
  2. Page template names should follow the pattern: <view>/<content_type>.html.twig
  3. The content variable in a content view template should always be named content

Documentation

Detailed documentation is available in the ./doc directory:

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This bundle is released under the MIT License.

统计信息

  • 总下载量: 18.41k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 6
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-09-28