Example #1
0
 /**
  * Finds the Point model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Point the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Point::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Example #2
0
 public function actionUntop($id)
 {
     $model = $this->findModel($id);
     $point = Point::findOne($model->point_id);
     if ($point->user_id == \Yii::$app->user->id) {
         $model->is_top = 0;
     }
     $r = $model->save();
 }