@@ -2,26 +2,29 @@ discard block |
||
2 | 2 | |
3 | 3 | namespace app\modules\shop\controllers; |
4 | 4 | |
5 | +use Yii; |
|
6 | +use app\backend\actions\CategoryMovementsAction; |
|
7 | +use app\backend\actions\MassPublishAction; |
|
5 | 8 | use app\backend\actions\PropertyHandler; |
9 | +use app\backend\actions\UpdateEditable; |
|
6 | 10 | use app\backend\components\BackendController; |
7 | 11 | use app\backend\events\BackendEntityEditEvent; |
8 | -use app\modules\image\widgets\views\AddImageAction; |
|
9 | -use app\modules\shop\models\Category; |
|
10 | -use app\modules\image\models\Image; |
|
11 | 12 | use app\models\Object; |
12 | 13 | use app\models\ObjectPropertyGroup; |
13 | -use app\modules\shop\models\Currency; |
|
14 | -use app\modules\shop\models\Product; |
|
15 | 14 | use app\models\Property; |
16 | 15 | use app\models\PropertyStaticValues; |
17 | 16 | use app\models\ViewObject; |
18 | -use app\properties\HasProperties; |
|
17 | +use app\modules\image\models\Image; |
|
19 | 18 | use app\modules\image\widgets\RemoveAction; |
20 | 19 | use app\modules\image\widgets\SaveInfoAction; |
21 | 20 | use app\modules\image\widgets\UploadAction; |
22 | -use app\backend\actions\UpdateEditable; |
|
21 | +use app\modules\image\widgets\views\AddImageAction; |
|
22 | +use app\modules\shop\actions\BatchEditPriceAction; |
|
23 | +use app\modules\shop\models\Category; |
|
24 | +use app\modules\shop\models\Currency; |
|
25 | +use app\modules\shop\models\Product; |
|
26 | +use app\properties\HasProperties; |
|
23 | 27 | use devgroup\JsTreeWidget\AdjacencyFullTreeDataAction; |
24 | -use Yii; |
|
25 | 28 | use yii\data\ActiveDataProvider; |
26 | 29 | use yii\db\Query; |
27 | 30 | use yii\filters\AccessControl; |
@@ -30,9 +33,6 @@ discard block |
||
30 | 33 | use yii\helpers\Url; |
31 | 34 | use yii\web\NotFoundHttpException; |
32 | 35 | use yii\web\ServerErrorHttpException; |
33 | -use app\backend\actions\MassPublishAction; |
|
34 | -use app\backend\actions\CategoryMovementsAction; |
|
35 | -use app\modules\shop\actions\BatchEditPriceAction; |
|
36 | 36 | |
37 | 37 | class BackendProductController extends BackendController |
38 | 38 | { |
@@ -2,12 +2,12 @@ |
||
2 | 2 | namespace app\modules\shop\widgets; |
3 | 3 | |
4 | 4 | use Yii; |
5 | +use app\modules\shop\assets\BatchEditPriceAsset; |
|
6 | +use app\modules\shop\models\Currency; |
|
7 | +use kartik\icons\Icon; |
|
5 | 8 | use yii\base\Widget; |
6 | 9 | use yii\helpers\Html; |
7 | 10 | use yii\helpers\Url; |
8 | -use kartik\icons\Icon; |
|
9 | -use app\modules\shop\assets\BatchEditPriceAsset; |
|
10 | -use app\modules\shop\models\Currency; |
|
11 | 11 | |
12 | 12 | /** |
13 | 13 | * Batch edit prices |
@@ -2,11 +2,11 @@ |
||
2 | 2 | namespace app\modules\shop\actions; |
3 | 3 | |
4 | 4 | use Yii; |
5 | -use yii\base\Action; |
|
6 | -use yii\web\Response; |
|
7 | -use yii\web\NotFoundHttpException; |
|
8 | 5 | use app\modules\shop\models\Category; |
9 | 6 | use app\modules\shop\models\Product; |
7 | +use yii\base\Action; |
|
8 | +use yii\web\NotFoundHttpException; |
|
9 | +use yii\web\Response; |
|
10 | 10 | |
11 | 11 | class BatchEditPriceAction extends Action |
12 | 12 | { |
@@ -2,9 +2,8 @@ |
||
2 | 2 | |
3 | 3 | namespace app\modules\shop\models; |
4 | 4 | |
5 | -use yii\db\ActiveRecord; |
|
6 | -use Yii; |
|
7 | 5 | use app\modules\shop\models\Product; |
6 | +use yii\db\ActiveRecord; |
|
8 | 7 | |
9 | 8 | /** |
10 | 9 | * This is the model class for table "{{%wishlist_product}}". |
@@ -2,8 +2,8 @@ |
||
2 | 2 | |
3 | 3 | namespace app\backend\widgets; |
4 | 4 | |
5 | -use yii\base\Widget; |
|
6 | 5 | use app\backend\models\Notification as NotificationModel; |
6 | +use yii\base\Widget; |
|
7 | 7 | |
8 | 8 | class Notification extends Widget |
9 | 9 | { |
@@ -2,13 +2,13 @@ |
||
2 | 2 | |
3 | 3 | namespace app\modules\shop\controllers; |
4 | 4 | |
5 | -use yii\web\Controller; |
|
6 | 5 | use Yii; |
7 | -use yii\web\Response; |
|
8 | 6 | use app\modules\shop\models\Wishlist; |
9 | -use yii\web\NotFoundHttpException; |
|
10 | -use yii\web\BadRequestHttpException; |
|
11 | 7 | use app\modules\shop\models\WishlistProduct; |
8 | +use yii\web\BadRequestHttpException; |
|
9 | +use yii\web\Controller; |
|
10 | +use yii\web\NotFoundHttpException; |
|
11 | +use yii\web\Response; |
|
12 | 12 | |
13 | 13 | class WishlistController extends Controller |
14 | 14 | { |
@@ -2,11 +2,11 @@ |
||
2 | 2 | |
3 | 3 | namespace app\modules\shop\models; |
4 | 4 | |
5 | -use yii\db\ActiveRecord; |
|
6 | 5 | use Yii; |
7 | -use app\modules\user\models\User; |
|
8 | -use app\modules\shop\models\WishlistProduct; |
|
9 | 6 | use app\modules\shop\models\Currency; |
7 | +use app\modules\shop\models\WishlistProduct; |
|
8 | +use app\modules\user\models\User; |
|
9 | +use yii\db\ActiveRecord; |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * This is the model class for table "{{%wishlist}}". |
@@ -2,6 +2,7 @@ discard block |
||
2 | 2 | |
3 | 3 | namespace app\modules\shop\controllers; |
4 | 4 | |
5 | +use Yii; |
|
5 | 6 | use app\components\Controller; |
6 | 7 | use app\extensions\DefaultTheme\components\BaseWidget; |
7 | 8 | use app\extensions\DefaultTheme\models\ThemeActiveWidgets; |
@@ -13,13 +14,13 @@ discard block |
||
13 | 14 | use app\modules\core\helpers\ContentBlockHelper; |
14 | 15 | use app\modules\core\helpers\EventTriggeringHelper; |
15 | 16 | use app\modules\core\models\ContentBlock; |
17 | +use app\modules\seo\behaviors\SetCanonicalBehavior; |
|
16 | 18 | use app\modules\shop\events\ProductPageShowed; |
17 | 19 | use app\modules\shop\exceptions\EmptyFilterHttpException; |
18 | 20 | use app\modules\shop\models\Category; |
19 | 21 | use app\modules\shop\models\Product; |
20 | 22 | use app\traits\DynamicContentTrait; |
21 | 23 | use devgroup\TagDependencyHelper\ActiveRecordHelper; |
22 | -use Yii; |
|
23 | 24 | use yii\caching\TagDependency; |
24 | 25 | use yii\data\Pagination; |
25 | 26 | use yii\helpers\ArrayHelper; |
@@ -29,7 +30,6 @@ discard block |
||
29 | 30 | use yii\web\NotFoundHttpException; |
30 | 31 | use yii\web\Response; |
31 | 32 | use yii\web\ServerErrorHttpException; |
32 | -use app\modules\seo\behaviors\SetCanonicalBehavior; |
|
33 | 33 | |
34 | 34 | class ProductController extends Controller |
35 | 35 | { |
@@ -80,6 +80,9 @@ |
||
80 | 80 | } |
81 | 81 | |
82 | 82 | |
83 | + /** |
|
84 | + * @param string $relationName |
|
85 | + */ |
|
83 | 86 | protected static function getRelation($model, $relationName, $default_value = '') |
84 | 87 | { |
85 | 88 | $result = $default_value; |