dev-master
9999999-devPrestashop WebService bundle for Symfony 2
commercial
The Requires
by Anthony GROSS
bundle prestashop webservice
Prestashop WebService bundle for Symfony 2
This bundle allow you to integrate easily Prestashop API into your symfony project., (*1)
This version of the bundle requires Symfony 2.1+., (*2)
Installation is a quick 4 step process:, (*3)
Add KkuetNetPrestashopWebServiceBundle in your composer.json:, (*4)
{ "require": { "kkuetnet/prestashopwebservice-bundle": "dev-master" } }
Composer will install the bundle to your project's vendor/kkuetnet
directory., (*5)
Enable the bundle in the kernel:, (*6)
``` php <?php // app/AppKernel.php, (*7)
public function registerBundles() { $bundles = array( // ... new \KkuetNet\PrestashopWebServiceBundle\KkuetNetPrestashopWebServiceBundle(), ); }, (*8)
### Step 3: Configure the KkuetNetPrestashopWebServiceBundle [More information about Prestashop API](http://doc.prestashop.com/download/attachments/720902/CRUD%20Tutorial%20EN.pdf) ``` yaml # app/config/config.yml kkuet_net_prestashop_web_service: debug: false website: http://prestashop.kkuet.net/ key: R03J6M0Z87H9P2ZRHTTPE72MU6RU34AB
``` php namespace Acme\DemoBundle\Controller;, (*9)
use Symfony\Bundle\FrameworkBundle\Controller\Controller;, (*10)
class WelcomeController extends Controller { public function indexAction() { $persta = $this->container->get('prestashop_webservice')->getInstance(); $result = $persta->get(array( "resource" => "products" )); #More information => http://doc.prestashop.com/download/attachments/720902/CRUD%20Tutorial%20EN.pdf var_dump($result); } } ```, (*11)
Prestashop WebService bundle for Symfony 2
commercial
bundle prestashop webservice