Пример #1
0
 public function actionCambio()
 {
     $id = $_POST['valor'];
     $model = Equipos::findOne($id);
     if ($model !== null) {
         return $this->redirect(['create', 'id' => $id, 'model' => $model]);
     } else {
         return 1;
     }
 }
Пример #2
0
 /**
  * Finds the Equipos model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Equipos the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Equipos::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }