koala-framework/kwc-content-api

此包的最新版本(1.0.x-dev)没有提供许可信息。

1.0.x-dev 2022-03-17 08:52 UTC

This package is auto-updated.

Last update: 2024-09-17 14:06:39 UTC


README

安装

  • 将 AppBundle 添加到 AppKernel.php

      public function registerBundles()
      {
          $bundles = array(
              ...
              new Kwc\ContentApiBundle\KwcContentApiBundle()
          );
          ...
      }
    
  • 将路由配置添加到 routing.yml

      kwc_content_api:
          resource: "@KwcContentApiBundle/Resources/config/routing.yml"
          prefix:   /
    
  • 将需要导出的组件添加到 config.yml 的白名单中

      kwc_content_api:
          export_components:
              - Kwc_Paragraphs_Component
              - Kwc_Basic_Headline_Component