docroms/cnc-bundle

Symfony Bundle for CNC movies integration

Installs: 22

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Type:symfony-bundle

dev-master 2016-11-10 00:37 UTC

This package is not auto-updated.

Last update: 2024-05-11 17:50:56 UTC


README

This Bundle help developers for integrate their movies to CNC.

How to install ?

composer.json

Add this line :
"docroms/cnc-bundle": "dev-master",

config.json

Add this lines :
cnc:
    mode: recette # or production
    production_oauth_url: http://vad.cnc.fr
    production_consumer_key: YourProductionConsumerKey
    production_consumer_secret: YourProductionConsumerSecret
    production_access_token: YourProductionAccessToken
    production_access_token_secret : YourProductionAccessTokenSecret
    recette_oauth_url: http://int-cncvod.integra.fr
    recette_consumer_key: YourRecetteConsumerKey
    recette_consumer_secret: YourRecetteConsumerSecret
    recette_access_token: YourRecetteAccessToken
    recette_access_token_secret : YourRecetteAccessTokenSecret

AppKernel.php

Add this lines on the Bundles array:
new \docroms\CncBundle\CncBundle()

How to use it?

On your controller :

You can just get the object (for send all movies to the CNC) like that :
    $editor = $this->get('cnc')
    ->getNewOeuvresByEditor();


And send this object like this for send your movie list to the CNC:
    $result = $this->get('cnc')
    ->SendToCnc($editor);


After, you can get your movie list FROM the CNC like that:
    $result = $this->get('cnc')
    ->GetFromCnc($editor);