PHP code example of kollarovic / shopping-cart

1. Go to this page and download the library: Download kollarovic/shopping-cart library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

kollarovic / shopping-cart example snippets



namespace App\FrontendModule\Presenters;

use Kollarovic\ShoppingCart\Cart;
use Kollarovic\ShoppingCart\ICartControlFactory;
use Nette\Database\Context;


class CartPresenter extends BasePresenter
{

	/** @var Cart @inject */
	public $cart;

	/** @var ICartControlFactory @inject */
	public $cartControlFactory;

	/** @var Context @inject */
	public $database;


	public function actionAdd($id)
	{
		$product = $this->database->table('product')->get($id);

		if (!$product) $this->error();

		$this->cart->addItem($product->id, $product->price)
			->setName($product->name)
			->setImage($product->image)
			->setUnit($product->unit)
			->setVatRate($product->vat)
			->setLink('Product:default')
			->setLinkArgs($product->id);

		$this->redirect('default');
	}


	protected function createComponentCartControl()
	{
		$cartControl = $this->cartControlFactory->create();

		$cartControl->onClickContinue[] = function() {
			$this->redirect('Homepage:default');
		};

		$cartControl->onClickNext[] = function() {
			$this->redirect('Order:default');
		};
		return $cartControl;
	}

}



{control cartControl}