- Registro de agentes git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_PROFIND_Web/trunk@37 3fe1ab16-cfe0-e34b-8c9f-7d8c168d430d
39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
<?php
|
|
|
|
class SubscripcionController extends Controller
|
|
{
|
|
public function actionModificar($id)
|
|
{
|
|
|
|
$model = $this->loadModel($id);
|
|
|
|
// Uncomment the following line if AJAX validation is needed
|
|
// $this->performAjaxValidation($model);
|
|
|
|
if (isset($_POST['Subscripcion'])) {
|
|
$model->attributes = $_POST['Subscripcion'];
|
|
if ($model->save()) {
|
|
Yii::app()->user->setFlash('success', Yii::t('profind', 'Se ha actualizado de producto'));
|
|
$this->redirect(array('modificar', 'id' => $model->id));
|
|
}
|
|
}
|
|
|
|
$this->render('modificar', array(
|
|
'model' => $model,
|
|
));
|
|
}
|
|
|
|
/**
|
|
* 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 the ID of the model to be loaded
|
|
*/
|
|
public function loadModel($id) {
|
|
$model = Subscripcion::model()->findByPk($id);
|
|
if ($model === null)
|
|
throw new CHttpException(404, Yii::t('profind', 'La página solicitada no existe.'));
|
|
|
|
return $model;
|
|
}
|
|
|
|
} |