[ 'class' => VerbFilter::className(), 'actions' => [ ], ], 'access' => [ 'class' => AccessControl::className(), 'rules' => [ [ 'allow' => true, 'roles' => ['@'], 'matchCallback' => function ($rule, $action) { return User::hasAccessBackend(); } ] ], ], ]; } /** * Liste les modèles Produit. * * @return mixed */ public function actionIndex() { $dataProvider = new ActiveDataProvider([ 'query' => Product::find() ->where(['id_producer' => Producer::getId()]) ->orderBy('order ASC'), 'pagination' => [ 'pageSize' => 1000, ], ]); return $this->render('index', [ 'dataProvider' => $dataProvider, ]); } /** * Crée un modèle Produit. * Si la création réussit, le navigateur est redirigé vers la page 'index'. * * @return mixed */ public function actionCreate() { $model = new Product(); $model->active = 1; $model->id_producer = Producer::getId(); if ($model->load(Yii::$app->request->post()) && $model->save()) { Upload::uploadFile($model, 'photo'); $model->save(); // on ajoute un enregistrement ProductionProduit pour chaque production $distributionsArray = Distribution::find() ->where('date > ' . date('Y-m-d')) ->andWhere(['id_producer' => Producer::getId()]) ->all(); foreach ($distributionsArray as $distribution) { $productDistribution = new ProductDistribution; $productDistribution->id_distribution = $distribution->id; $productDistribution->id_product = $model->id; $productDistribution->active = 0; $productDistribution->save(); } return $this->redirect(['index']); } else { return $this->render('create', [ 'model' => $model, ]); } } /** * Modifie un modèle Produit existant. * Si la modification réussit, le navigateur est redirigé vers la page 'index'. * * @param integer $id * @return mixed */ public function actionUpdate($id) { $request = Yii::$app->request; $model = $this->findModel($id); $photoFilenameOld = $model->photo; if ($model->load(Yii::$app->request->post()) && $model->save()) { Upload::uploadFile($model, 'photo', $photoFilenameOld); $deletePhoto = $request->post('delete_photo', 0); if ($deletePhoto) { $model->photo = ''; $model->save(); } return $this->redirect(['index']); } else { return $this->render('update', [ 'model' => $model, ]); } } /** * Supprime un modèle Produit. * Si la suppression réussit, le navigateur est redirigé vers la page * 'index'. * * @param integer $id * @return mixed */ public function actionDelete($id) { $this->findModel($id)->delete(); ProductDistribution::deleteAll(['id_product' => $id]) ; return $this->redirect(['index']); } /** * Modifie l'ordre des produits. * * @param array $array */ public function actionOrder($array) { $orderArray = json_decode(stripslashes($array)); foreach($orderArray as $id => $order) { $product = $this->findModel($id); $product->order = $order; $product->save(); } } /** * Recherche un produit en fonction de son ID. * * @param integer $id * @return Produit * @throws NotFoundHttpException si le modèle n'est pas trouvé */ protected function findModel($id) { if (($model = Product::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } } }