astina/tradedoubler-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Symfony 2 bundle for Tradedoubler integration

Installs: 2 640

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 20

Forks: 0

Type:symfony-bundle

1.2.6 2016-09-15 07:39 UTC

This package is not auto-updated.

Last update: 2022-07-09 03:49:48 UTC


README

Symfony 2 bundle for Tradedoubler integration.

Installation

Step 1: Add to composer.json

"require" :  {
    // ...
    "astina/tradedoubler-bundle":"dev-master",
}

Step 2: Enable the bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Astina\Bundle\TradedoublerBundle\AstinaTradedoublerBundle(),
    );
}

Step 3: Configuration

Add the token, feed ID and trackback infos to your config.yml:

# app/config.yml

astina_tradedoubler:
    api_token: xxxxyyyyzzz
    feed_id: 123456
    trackback:
        organization: 1111
        event_id: 2222
        redirect_default_url: http://myshop.com

Usage

Use the classes in Model/ to create instances of Product, Category, ProductImage and ProductCollection.

Use the astina_tradedoubler.client service to create/update/delete Tradedoubler records:

/** @var \Astina\Bundle\TradedoublerBundle\Client\Client $client **/
$client->createProducts(new ProductCollection($tradedoublerProducts));

Sending all product data to Tradedoubler

You can use the astina:tradedoubler:populate commands to send your whole product catalogue to Tradedoubler. For this to work you have to:

  1. Create a service that implements Astina\Bundle\TradedoublerBundle\Client\ProductSourceInterface.

  2. Add the service id to the config:

astina_tradedoubler:
    product_source: my_product_source_service