jbcr c8ab03418d Fix error on fail YAML parse without exception (#4)
* check if the parse result is an array

Co-Authored-By: jeremycr <32451794+jeremycr@users.noreply.github.com>
2019-10-16 11:05:04 +02:00
2019-10-15 09:49:20 +02:00
2019-10-15 09:49:20 +02:00
2019-10-15 16:25:43 +02:00
2019-10-15 09:49:20 +02:00
2019-10-15 09:49:20 +02:00
2019-10-15 09:49:20 +02:00

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
Description
No description provided
Readme MIT 1.8 MiB
Latest
2024-12-17 11:50:52 +01:00
Languages
PHP 72.2%
Twig 27.8%