/** * Finds the DctToothLoc model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return DctToothLoc the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = DctToothLoc::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }
public function saveLocalizationData($model, $params, $languageCount) { for ($i = 0; $i < $languageCount; $i++) { if ($model->dct_tooth_id > -1) { $childModel = new DctToothLoc(); $childModel->dct_tooth_id = $model->dct_tooth_id; $childModel->dct_language_id = $params[$i]['dct_language_id']; } else { $childModel = DctToothLoc::findOne($params[$i]['dct_tooth_loc_id']); } $childModel->text = !empty($params[$i]['text']) ? $params[$i]['text'] : ''; $childModel->save(); } }