This is a Symfony2 bundle to provide easy access to the traction-php library.
Use composer to get the bundle:
php composer.phar require noetix/traction-bundle:*
Enable the bundle in your AppKernel:
new noetix\TractionBundle\noetixTractionBundle(),
Configure the bundle in config.yml
:
noetix_traction:
endpoint_id: 12345
user_id: my_username
password: fantastic_password
noetix_traction:
endpoint_id: notused
user_id: notused
password: fantastic_password
connection: 2n5e7b2r8qkx07dy2ctd
To get the classic handler for the Traction Classic API
$traction = $this->get('traction.handler');
To get the dynamic handler for the Traciton Dynamic API
$traction = $this->get('traction.dynamic');
For further code examples see traction-php