helsingborg-stad/acf-export-manager
最新稳定版本:1.0.12
Composer 安装命令:
composer require helsingborg-stad/acf-export-manager
包简介
ACF Export Manager is a extension that let's you automatically export specified your ACF fields on save.
README 文档
README
ACF Export Manager is a extension that let's you automatically export specified your ACF fields on save.
Setting it up
1. Require and initialize the class
require_once 'path/to/AcfExportManager.php'; $acfExportManager = new HelsingborgsStad\AcfExportManager();
2. Set destination folder for export files
Make sure your destination folder is created and that the webserver has write permissions to it.
$acfExportManager->setExportFolder('path/to/destination/folder');
3. Set which fieldgroups that should be auto exported
If array item key is specified the key will be used as filename(s) for the exported file(s). If no item key isset the name of the fieldgroup will be used as filename(s).
$acfExportManager->autoExport(array( 'group_58b6e40e5a8f4', 'halloj' => 'group_58b80e0111556' ));
4. Import exported fieldgroups
$acfExportManager->import();
Field translations
ACF Export Manager also simifies the translation process of you fields. If you wold like the translation ability for your fields you need to specify a textdomain for your exports, like this:
$acfExportManager->setTextdomain('my-text-domain');
统计信息
- 总下载量: 56.69k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 45
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2017-08-10