MzgtalcancesController.php 1.65 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
<?php

class MzgtalcancesController extends GxController {


	public function actionView($id) {
		$this->render('view', array(
			'model' => $this->loadModel($id, 'Mzgtalcances'),
		));
	}

	public function actionCreate() {
		$model = new Mzgtalcances;


		if (isset($_POST['Mzgtalcances'])) {
			$model->setAttributes($_POST['Mzgtalcances']);

			if ($model->save()) {
				if (Yii::app()->getRequest()->getIsAjaxRequest())
					Yii::app()->end();
				else
					$this->redirect(array('view', 'id' => $model->PK_MZGTALCANCES));
			}
		}

		$this->render('create', array( 'model' => $model));
	}

	public function actionUpdate($id) {
		$model = $this->loadModel($id, 'Mzgtalcances');


		if (isset($_POST['Mzgtalcances'])) {
			$model->setAttributes($_POST['Mzgtalcances']);

			if ($model->save()) {
				$this->redirect(array('view', 'id' => $model->PK_MZGTALCANCES));
			}
		}

		$this->render('update', array(
				'model' => $model,
				));
	}

	public function actionDelete($id) {
		if (Yii::app()->getRequest()->getIsPostRequest()) {
			$this->loadModel($id, 'Mzgtalcances')->delete();

			if (!Yii::app()->getRequest()->getIsAjaxRequest())
				$this->redirect(array('admin'));
		} else
			throw new CHttpException(400, Yii::t('app', 'Your request is invalid.'));
	}

	public function actionIndex() {
		$dataProvider = new CActiveDataProvider('Mzgtalcances');
		$this->render('index', array(
			'dataProvider' => $dataProvider,
		));
	}

	public function actionAdmin() {
		$model = new Mzgtalcances('search');
		$model->unsetAttributes();

		if (isset($_GET['Mzgtalcances']))
			$model->setAttributes($_GET['Mzgtalcances']);

		$this->render('admin', array(
			'model' => $model,
		));
	}

}