LanguageController::actionUpdate PHP Method

actionUpdate() public method

If update is successful, the browser will be redirected to the 'view' page.
public actionUpdate ( integer $id )
$id integer the ID of the model to be updated
    public function actionUpdate($id)
    {
        $model = $this->loadModel($id);
        // Uncomment the following line if AJAX validation is needed
        // $this->performAjaxValidation($model);
        if (isset($_POST['Language'])) {
            $model->attributes = $_POST['Language'];
            if ($model->save()) {
                $this->redirect(array('view', 'id' => $model->language_id));
            }
        }
        $this->render('update', array('model' => $model));
    }