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
Requires
- guzzlehttp/guzzle: ~6.0
- guzzlehttp/oauth-subscriber: 0.3.*
This package is not auto-updated.
Last update: 2025-01-18 21:47:15 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);