public function edit($id)
 {
     $link = Input::get('link');
     $nombre = Input::get('nombre');
     $testigo = Testigo::find($id);
     $testigo->nombre = $nombre;
     $testigo->link = $link;
     $testigo->save();
     return Redirect::to('testigos');
 }
 public function index()
 {
     $galeria = Galeria::all();
     $testigos = Testigo::all();
     return View::make('front.index')->with(compact('galeria', 'testigos'));
 }
Пример #3
0
 /**
  * Returns the data model based on the primary key given in the GET variable.
  * If the data model is not found, an HTTP exception will be raised.
  * @param integer $id the ID of the model to be loaded
  * @return Testigo the loaded model
  * @throws CHttpException
  */
 public function loadModel($id)
 {
     $model = Testigo::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }