| Total Complexity | 4 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class BasketController extends AbstractController |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * Processes requests and renders the basket. |
||
| 26 | */ |
||
| 27 | public function indexAction() |
||
| 31 | } |
||
| 32 | |||
| 33 | |||
| 34 | /** |
||
| 35 | * Renders a bulk order form. |
||
| 36 | */ |
||
| 37 | public function bulkAction() |
||
| 38 | { |
||
| 39 | $client = \Aimeos\Client\Html::create($this->context(), 'basket/bulk'); |
||
| 40 | return $this->getClientOutput($client); |
||
| 41 | } |
||
| 42 | |||
| 43 | |||
| 44 | /** |
||
| 45 | * Renders a small basket. |
||
| 46 | */ |
||
| 47 | public function smallAction() |
||
| 48 | { |
||
| 49 | $client = \Aimeos\Client\Html::create($this->context(), 'basket/mini'); |
||
| 50 | return $this->getClientOutput($client); |
||
| 51 | } |
||
| 52 | |||
| 53 | |||
| 54 | /** |
||
| 55 | * Renders the related basket. |
||
| 56 | */ |
||
| 57 | public function relatedAction() |
||
| 61 | } |
||
| 62 | } |
||
| 63 |