ThemeController::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['Theme'])) {
            $model->attributes = $_POST['Theme'];
            if ($model->save()) {
                $this->redirect(array('admin'));
            }
        }
        $this->render('update', array('model' => $model));
    }