donfelice / csvimportexportbundle
CSVImportExportBundle 是一个为 eZ Platform v2 提供基本导入和导出功能的行政界面插件包。
0.1
2018-05-10 11:27 UTC
Requires
- php: ^7.1
- ezsystems/ezplatform-admin-ui: ^1.0
- ezsystems/ezplatform-admin-ui-assets: ^1.0
- ezsystems/ezplatform-admin-ui-modules: ^1.0
- ezsystems/ezpublish-kernel: ^7.0
This package is not auto-updated.
Last update: 2024-09-21 16:31:37 UTC
README
CSVImportExportBundle 是一个为 eZ Platform v2 提供基本导入和导出功能的行政界面插件包。
安装
使用 Composer
在网站根目录下运行以下命令以安装 Analytics Bundle
$ composer require donfelice/csvimportexportbundle
激活插件包
在 app/AppKernel.php 文件中激活插件包,将其添加到 registerBundles 方法中的 $bundles 数组中,与其他所需插件包一起
public function registerBundles() { ... $bundles[] = new Donfelice\AnalyticsBundle\DonfeliceCSVImportExportBundle(); return $bundles; }
Assetic 配置
您需要将其添加到 app/config/config.yml 中的 Assetic 配置中,与 EzPlatformAdminUiBundle 和其他已配置的插件包一起
assetic:
bundles: [EzPlatformAdminUiBundle, DonfeliceCSVImportExportBundle]
限制
是的。
- 目前仅支持 ezstring 和 ezemail 字段类型。更多功能即将推出。
- 在大量对象导入方面表现不佳。
- 导出的文件在 macOS 上的 Excel 中看起来不太理想。关于 BOM、UTF 和其他几个怪物的故事已经众所周知且历史悠久。