mirror of
https://github.com/code-rhapsodie/ezdataflow-bundle.git
synced 2026-03-24 06:32:06 +01:00
c8ab03418ddefeacfd8df57df3ca7ec1acef5305
* check if the parse result is an array Co-Authored-By: jeremycr <32451794+jeremycr@users.noreply.github.com>
eZ Dataflow
The eZ Dataflow bundle is intent to manage external data sources import into your EZPlatform instance.
Installation
Step 1: Install the bundle via composer
$ composer require code-rhapsodie/ezdataflow
Step 2: Enable the bundle
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = [
// ...
new CodeRhapsodie\DataflowBundle\CodeRhapsodieDataflowBundle(),
new CodeRhapsodie\EzDataflowBundle\CodeRhapsodieEzDataflowBundle(),
// ...
];
}
Step 3: Import bundle routing file
# app/config/routing.yml
cr.dataflow:
resource: '@CodeRhapsodieEzDataflowBundle/Resources/config/routing.yaml'
Configuration
By default, the ContentWriter will publish contents using the admin user. If you want to use another user (with sufficient permissions), you can configure it like this:
# app/config/config.yml
code_rhapsodie_ez_dataflow:
# Integer values are assumed to be user ids, non-integer values are assumed to be user logins
admin_login_or_id: webmaster
Releases
16
Languages
PHP
72.2%
Twig
27.8%