astina / tradedoubler-bundle
Symfony 2 bundle for Tradedoubler integration
Installs: 2 641
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 20
Forks: 0
Type:symfony-bundle
Requires
- php: >=5.3.0
- guzzle/guzzle: ~3.0
- jms/serializer: >=0.13.0,<=1.0
- symfony/symfony: ~2.0
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:
-
Create a service that implements
Astina\Bundle\TradedoublerBundle\Client\ProductSourceInterface
. -
Add the service id to the config:
astina_tradedoubler: product_source: my_product_source_service