MzgtcampusController.php 2.04 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 77 78 79 80 81 82 83
<?php

class MzgtcampusController extends GxController {


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

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


		if (isset($_POST['Mzgtcampus'])) {
			$model->setAttributes($_POST['Mzgtcampus']);
			$relatedData = array(
				'mzgtdepartamentoses' => !isset($_POST['Mzgtcampus']['mzgtdepartamentoses']) ? null : $_POST['Mzgtcampus']['mzgtdepartamentoses'],
				);

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

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

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


		if (isset($_POST['Mzgtcampus'])) {
			$model->setAttributes($_POST['Mzgtcampus']);
                                                
			$relatedData = array(
				'mzgtdepartamentoses' => !isset($_POST['Mzgtcampus']['mzgtdepartamentoses']) ? null : $_POST['Mzgtcampus']['mzgtdepartamentoses'],
				);

			if ($model->saveWithRelated($relatedData)) {
				$this->redirect(array('view', 'id' => $model->PK_MZGTCAMPUS));
			}
		}

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

	public function actionDelete($id) {
		if (Yii::app()->getRequest()->getIsPostRequest()) {
			$this->loadModel($id, 'Mzgtcampus')->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('Mzgtcampus');
		$this->render('index', array(
			'dataProvider' => $dataProvider,
		));
	}

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

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

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

}