1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* Cart module for Yii2 |
5
|
|
|
* |
6
|
|
|
* @link https://github.com/hiqdev/yii2-cart |
7
|
|
|
* @package yii2-cart |
8
|
|
|
* @license BSD-3-Clause |
9
|
|
|
* @copyright Copyright (c) 2015-2016, HiQDev (http://hiqdev.com/) |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
namespace hiqdev\yii2\cart\controllers; |
13
|
|
|
|
14
|
|
|
use hiqdev\yii2\cart\NotPurchasableException; |
15
|
|
|
use hiqdev\yii2\cart\ShoppingCart; |
16
|
|
|
use hiqdev\yii2\cart\widgets\CartTeaser; |
17
|
|
|
use Yii; |
18
|
|
|
use yii\base\ViewContextInterface; |
19
|
|
|
use yii\data\ArrayDataProvider; |
20
|
|
|
use yii\web\Controller; |
21
|
|
|
use yii\web\NotFoundHttpException; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* Cart controller. |
25
|
|
|
* |
26
|
|
|
* @property ShoppingCart $cart The shopping cart instance |
27
|
|
|
*/ |
28
|
|
|
class CartController extends Controller implements ViewContextInterface |
29
|
|
|
{ |
30
|
|
|
/** |
31
|
|
|
* @return ShoppingCart |
32
|
|
|
*/ |
33
|
|
|
public function getCart() |
34
|
|
|
{ |
35
|
|
|
return $this->module->getCart(); |
36
|
|
|
} |
37
|
|
|
|
38
|
|
|
public function actionIndex() |
39
|
|
|
{ |
40
|
|
|
$cart = $this->getCart(); |
41
|
|
|
$dataProvider = new ArrayDataProvider([ |
42
|
|
|
'allModels' => $cart->getRootPositions(), |
43
|
|
|
'pagination' => false |
44
|
|
|
]); |
45
|
|
|
|
46
|
|
|
if (Yii::$app->request->isAjax) { |
47
|
|
|
return $this->renderAjax('index', [ |
48
|
|
|
'cart' => $cart, |
49
|
|
|
'module' => $this->module, |
50
|
|
|
'dataProvider' => $dataProvider, |
51
|
|
|
]); |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
return $this->render('index', [ |
55
|
|
|
'cart' => $cart, |
56
|
|
|
'module' => $this->module, |
57
|
|
|
'dataProvider' => $dataProvider, |
58
|
|
|
]); |
59
|
|
|
} |
60
|
|
|
|
61
|
|
|
public function actionTopcart() |
62
|
|
|
{ |
63
|
|
|
return $this->renderPartial('topcart', ['widgetClass' => CartTeaser::class]); |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
public function actionRemove($id) |
67
|
|
|
{ |
68
|
|
|
try { |
69
|
|
|
$this->getCart()->removeById($id); |
70
|
|
|
} catch (NotPurchasableException $exception) { |
71
|
|
|
Yii::$app->getSession()->setFlash('error', $exception->getMessage()); |
|
|
|
|
72
|
|
|
$exception->resolve(); |
|
|
|
|
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
if (Yii::$app->request->isAjax) { |
76
|
|
|
Yii::$app->end(); |
77
|
|
|
} |
78
|
|
|
|
79
|
|
|
return $this->redirect(['index']); |
80
|
|
|
} |
81
|
|
|
|
82
|
|
|
public function actionUpdateQuantity() |
83
|
|
|
{ |
84
|
|
|
$request = Yii::$app->request; |
85
|
|
|
$id = $request->post('id'); |
86
|
|
|
$quantity = $request->post('quantity'); |
87
|
|
|
if ($id && $quantity) { |
88
|
|
|
$position = $this->getCart()->getPositionById($id); |
89
|
|
|
if ($position) { |
90
|
|
|
try { |
91
|
|
|
$this->getCart()->update($position, $quantity); |
92
|
|
|
} catch (NotPurchasableException $exception) { |
93
|
|
|
Yii::$app->getSession()->setFlash('error', $exception->getMessage()); |
|
|
|
|
94
|
|
|
$exception->resolve(); |
|
|
|
|
95
|
|
|
} |
96
|
|
|
|
97
|
|
|
return $this->redirect('index'); |
98
|
|
|
} |
99
|
|
|
} |
100
|
|
|
|
101
|
|
|
throw new NotFoundHttpException('Either position ID or Quantity is not set'); |
102
|
|
|
} |
103
|
|
|
|
104
|
|
|
public function actionClear() |
105
|
|
|
{ |
106
|
|
|
$this->getCart()->removeAll(); |
107
|
|
|
|
108
|
|
|
if (Yii::$app->request->isAjax) { |
109
|
|
|
Yii::$app->end(); |
110
|
|
|
} |
111
|
|
|
|
112
|
|
|
return $this->redirect(['index']); |
113
|
|
|
} |
114
|
|
|
|
115
|
|
|
public function getViewPath() |
116
|
|
|
{ |
117
|
|
|
if ($this->getCart()->module->viewPath) { |
118
|
|
|
return Yii::getAlias($this->getCart()->module->viewPath . DIRECTORY_SEPARATOR . 'cart'); |
|
|
|
|
119
|
|
|
} |
120
|
|
|
|
121
|
|
|
return parent::getViewPath(); |
122
|
|
|
} |
123
|
|
|
} |
124
|
|
|
|
It seems like the method you are trying to call exists only in some of the possible types.
Let’s take a look at an example:
Available Fixes
Add an additional type-check:
Only allow a single type to be passed if the variable comes from a parameter: