/** * Finds the DctProgressLoc model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return DctProgressLoc the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = DctProgressLoc::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }
/** * Updates an existing DctProgress model. * If update is successful, the browser will be redirected to the 'view' page. * @param integer $id * @return mixed */ public function actionUpdate($id) { $model = $this->findModel($id); $languages = $this->getLanguages(); if ($model->load(Yii::$app->request->post()) && $model->save()) { $params = Yii::$app->request->post(); DctProgressLoc::saveLocalizationData($model, $params, count($languages)); return $this->redirect(['view', 'id' => $model->dct_progress_id]); } else { return $this->render('update', ['model' => $model, 'languages' => $languages, 'modelLoc' => DctProgressLoc::getLocalizationData($id)]); } }
public function saveLocalizationData($model, $params, $languageCount) { for ($i = 0; $i < $languageCount; $i++) { if ($model->dct_progress_id > -1) { $childModel = new DctProgressLoc(); $childModel->dct_progress_id = $model->dct_progress_id; $childModel->dct_language_id = $params[$i]['dct_language_id']; } else { $childModel = DctProgressLoc::findOne($params[$i]['dct_progress_loc_id']); } $childModel->text = !empty($params[$i]['text']) ? $params[$i]['text'] : ''; $childModel->save(); } }
/** * @return \yii\db\ActiveQuery */ public function getDctProgressLocs() { return $this->hasMany(DctProgressLoc::className(), ['dct_language_id' => 'dct_language_id']); }