https://github.com/novactive/almaviacxibexaimportexportbundle
Bundle to handle import/export
https://github.com/novactive/almaviacxibexaimportexportbundle
Last synced: 17 days ago
JSON representation
Bundle to handle import/export
- Host: GitHub
- URL: https://github.com/novactive/almaviacxibexaimportexportbundle
- Owner: Novactive
- License: mit
- Created: 2024-05-21T12:57:22.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-12-15T14:28:14.000Z (3 months ago)
- Last Synced: 2025-12-18T18:38:08.687Z (3 months ago)
- Language: PHP
- Size: 236 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AlmaviaCX Ibexa Import/Export Bundle
Import / Export workflow :
A `job` trigger a `workflow`
A `workflow` call a `reader` to get a list of items, then use a list of `step` to filter/modify the items and finally pass them to a list of `writer`
## Step
A step service must implement `AlmaviaCX\Bundle\IbexaImportExport\Step\StepInterface` and have the tag `almaviacx.import_export.component`
The bundle provide the `AlmaviaCX\Bundle\IbexaImportExport\Step\AbstractStep` to simplify the creation of a service
### Provided steps
#### AlmaviaCX\Bundle\IbexaImportExport\Step\IbexaContentToArrayStep
Transform a content into an associative array. Take a map as argument to extract properties from a content to generate the associative array
More explaination on the transformation process [here](./doc/ibexa_content_to_array_step.md)
Options are :
- map (array representing the resulting associative array. each entry value correspond to a property of the content. ex : `["title" => "content.fields[title].value"]`)
## Writer