This Bundle help developers for integrate their movies to CNC.
Add this line :
"docroms/cnc-bundle": "dev-master",
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
Add this lines on the Bundles array:
new \docroms\CncBundle\CncBundle()
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);