/var/www/vhosts/nabawater/vendor/yiisoft/yii2/rest
NameSizeModeActions
Action.php35070644editdlrm
ActiveController.php45550644editdlrm
Controller.php29130644editdlrm
CreateAction.php19660644editdlrm
DeleteAction.php10710644editdlrm
IndexAction.php38760644editdlrm
OptionsAction.php13920644editdlrm
Serializer.php106960644editdlrm
UpdateAction.php15330644editdlrm
UrlRule.php99730644editdlrm
ViewAction.php8950644editdlrm
Edit: /var/www/vhosts/nabawater/vendor/yiisoft/yii2/rest/UpdateAction.php (1533B)
* @since 2.0 */ class UpdateAction extends Action { /** * @var string the scenario to be assigned to the model before it is validated and updated. */ public $scenario = Model::SCENARIO_DEFAULT; /** * Updates an existing model. * @param string $id the primary key of the model. * @return \yii\db\ActiveRecordInterface the model being updated * @throws ServerErrorHttpException if there is any error when updating the model */ public function run($id) { /* @var $model ActiveRecord */ $model = $this->findModel($id); if ($this->checkAccess) { call_user_func($this->checkAccess, $this->id, $model); } $model->scenario = $this->scenario; $model->load(Yii::$app->getRequest()->getBodyParams(), ''); if ($model->save() === false && !$model->hasErrors()) { throw new ServerErrorHttpException('Failed to update the object for unknown reason.'); } return $model; } }