for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @license GPLv3, http://www.gnu.org/copyleft/gpl.html
* @copyright Metaways Infosystems GmbH, 2012
* @copyright Aimeos (aimeos.org), 2014-2016
* @package TYPO3
*/
namespace Aimeos\Aimeos\Controller;
use Aimeos\Aimeos\Base;
* Aimeos basket controller.
*
class BasketController extends AbstractController
{
* Processes requests and renders the basket.
public function indexAction()
$client = \Aimeos\Client\Html::create($this->context(), 'basket/standard');
return $this->getClientOutput($client);
}
* Renders a bulk order form.
public function bulkAction()
$client = \Aimeos\Client\Html::create($this->context(), 'basket/bulk');
* Renders a small basket.
public function smallAction()
$client = \Aimeos\Client\Html::create($this->context(), 'basket/mini');
* Renders the related basket.
public function relatedAction()
$client = \Aimeos\Client\Html::create($this->context(), 'basket/related');