113
* Deletes an existing RoutePoint model.
* If deletion is successful, the browser will be redirected to the 'index' page.
* @param integer $id
* @return mixed
*/
public function actionDelete($id)
{
$model = $this->findModel($id);
$voyage = VoyageController::findModel($model->id_voyage);
$model->delete();
return $this->redirect(['index', 'id_voyage' => $model->id]);
}
/**
* Finds the RoutePoint model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param integer $id
* @return RoutePoint the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel($id)
{
if (($model = RoutePoint::findOne($id)) !== null) {
return $model;
} else {
throw new NotFoundHttpException('The requested page does not exist.');
}
}