2014-05-19 10:16:43 +02:00
|
|
|
<?php
|
|
|
|
|
2014-06-04 09:33:24 +02:00
|
|
|
class ProgramsController extends MSController
|
2014-05-19 10:16:43 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
public $layout='//layouts/column2';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array action filters
|
|
|
|
*/
|
|
|
|
public function filters()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
'accessControl', // perform access control for CRUD operations
|
|
|
|
'postOnly + delete', // we only allow deletion via POST request
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Specifies the access control rules.
|
|
|
|
* This method is used by the 'accessControl' filter.
|
|
|
|
* @return array access control rules
|
|
|
|
*/
|
|
|
|
public function accessRules()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
array('allow', // allow all users to perform 'index' and 'view' actions
|
2014-05-28 10:38:11 +02:00
|
|
|
'actions'=>array('index','view'),
|
2014-05-19 10:16:43 +02:00
|
|
|
'users'=>array('*'),
|
|
|
|
),
|
2014-05-28 10:38:11 +02:00
|
|
|
array('allow', // allow authenticated user to perform 'create' and 'update' actions
|
|
|
|
'actions'=>array('create','update','admin','delete'),
|
|
|
|
'users'=>array('@'),
|
|
|
|
),
|
2014-05-19 10:16:43 +02:00
|
|
|
// array('allow', // allow admin user to perform 'admin' and 'delete' actions
|
2014-05-28 10:38:11 +02:00
|
|
|
// 'actions'=>array(),
|
2014-05-19 10:16:43 +02:00
|
|
|
// 'users'=>array('admin'),
|
|
|
|
// ),
|
2014-05-28 10:38:11 +02:00
|
|
|
array('deny', // deny everythign else to all users
|
|
|
|
'users'=>array('*'),
|
|
|
|
),
|
2014-05-19 10:16:43 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Displays a particular model.
|
|
|
|
* @param integer $id the ID of the model to be displayed
|
2014-05-28 17:19:57 +02:00
|
|
|
* @throws CHttpException when $id is integer
|
2014-05-19 10:16:43 +02:00
|
|
|
*/
|
|
|
|
public function actionView($id)
|
|
|
|
{
|
2014-05-28 17:19:57 +02:00
|
|
|
if (is_numeric($id))
|
2014-05-28 11:26:17 +02:00
|
|
|
{
|
2014-05-28 17:19:57 +02:00
|
|
|
throw new CHttpException(400, "You can't access a program by ID");
|
|
|
|
//$model = $this->loadModelByID($id);
|
2014-05-28 11:26:17 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-05-28 17:19:57 +02:00
|
|
|
$model = $this->loadModelByName($id);
|
2014-05-28 11:26:17 +02:00
|
|
|
}
|
|
|
|
|
2014-05-19 10:16:43 +02:00
|
|
|
$this->render('view',array(
|
2014-05-28 11:26:17 +02:00
|
|
|
'model'=>$model,
|
2014-05-19 10:16:43 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new model.
|
|
|
|
* If creation is successful, the browser will be redirected to the 'view' page.
|
|
|
|
*/
|
|
|
|
public function actionCreate()
|
|
|
|
{
|
2014-05-28 11:02:52 +02:00
|
|
|
$model=new Program();
|
2014-05-19 10:16:43 +02:00
|
|
|
|
|
|
|
// Uncomment the following line if AJAX validation is needed
|
|
|
|
// $this->performAjaxValidation($model);
|
|
|
|
|
2014-05-28 11:02:52 +02:00
|
|
|
if (isset($_POST['Program'])) {
|
|
|
|
$model->attributes=$_POST['Program'];
|
2014-05-19 10:16:43 +02:00
|
|
|
if ($model->save()) {
|
|
|
|
$this->redirect(array('view','id'=>$model->ID));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->render('create',array(
|
|
|
|
'model'=>$model,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates a particular model.
|
|
|
|
* If update is successful, the browser will be redirected to the 'view' page.
|
|
|
|
* @param integer $id the ID of the model to be updated
|
|
|
|
*/
|
|
|
|
public function actionUpdate($id)
|
|
|
|
{
|
2014-05-28 17:19:57 +02:00
|
|
|
$model=$this->loadModelByID($id);
|
2014-05-19 10:16:43 +02:00
|
|
|
|
|
|
|
// Uncomment the following line if AJAX validation is needed
|
|
|
|
// $this->performAjaxValidation($model);
|
|
|
|
|
2014-05-28 11:02:52 +02:00
|
|
|
if (isset($_POST['Program'])) {
|
|
|
|
$model->attributes=$_POST['Program'];
|
2014-05-19 10:16:43 +02:00
|
|
|
if ($model->save()) {
|
|
|
|
$this->redirect(array('view','id'=>$model->ID));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->render('update',array(
|
|
|
|
'model'=>$model,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes a particular model.
|
|
|
|
* If deletion is successful, the browser will be redirected to the 'admin' page.
|
|
|
|
* @param integer $id the ID of the model to be deleted
|
2014-05-28 10:38:11 +02:00
|
|
|
* @throws CHttpException on invalid request
|
2014-05-19 10:16:43 +02:00
|
|
|
*/
|
|
|
|
public function actionDelete($id)
|
|
|
|
{
|
|
|
|
if (Yii::app()->request->isPostRequest) {
|
|
|
|
// we only allow deletion via POST request
|
2014-05-28 17:19:57 +02:00
|
|
|
$this->loadModelByID($id)->delete();
|
2014-05-19 10:16:43 +02:00
|
|
|
|
|
|
|
// if AJAX request (triggered by deletion via admin grid view), we should not redirect the browser
|
|
|
|
if (!isset($_GET['ajax'])) {
|
|
|
|
$this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('admin'));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
throw new CHttpException(400,'Invalid request. Please do not repeat this request again.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Lists all models.
|
|
|
|
*/
|
|
|
|
public function actionIndex()
|
|
|
|
{
|
2014-05-23 11:22:34 +02:00
|
|
|
$this->layout = '//layouts/main';
|
|
|
|
|
2014-06-02 19:31:14 +02:00
|
|
|
$data = array();
|
|
|
|
|
|
|
|
if (isset($_GET['page']) && is_numeric($_GET['page'])) {
|
|
|
|
$data['page'] = $_GET['page'];
|
|
|
|
} else {
|
|
|
|
$data['page'] = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->render('index', $data);
|
2014-05-19 10:16:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Manages all models.
|
|
|
|
*/
|
|
|
|
public function actionAdmin()
|
|
|
|
{
|
2014-05-28 11:02:52 +02:00
|
|
|
$model=new Program('search');
|
2014-05-19 10:16:43 +02:00
|
|
|
$model->unsetAttributes(); // clear any default values
|
2014-05-28 11:02:52 +02:00
|
|
|
if (isset($_GET['Program'])) {
|
|
|
|
$model->attributes=$_GET['Program'];
|
2014-05-19 10:16:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->render('admin',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 $id the ID of the model to be loaded
|
2014-05-28 11:02:52 +02:00
|
|
|
* @return Program the loaded model
|
2014-05-19 10:16:43 +02:00
|
|
|
* @throws CHttpException
|
|
|
|
*/
|
2014-05-28 11:26:17 +02:00
|
|
|
public function loadModelByID($id)
|
2014-05-19 10:16:43 +02:00
|
|
|
{
|
2014-05-28 11:02:52 +02:00
|
|
|
$model=Program::model()->findByPk($id);
|
2014-05-19 10:16:43 +02:00
|
|
|
if ($model===null) {
|
2014-05-28 17:19:57 +02:00
|
|
|
throw new CHttpException(404,'The requested Programm (by ID) does not exist.');
|
2014-05-19 10:16:43 +02:00
|
|
|
}
|
|
|
|
return $model;
|
|
|
|
}
|
|
|
|
|
2014-05-28 11:26:17 +02:00
|
|
|
/**
|
|
|
|
* Returns the data model based on the name of Program
|
|
|
|
* If the data model is not found, an HTTP exception will be raised.
|
|
|
|
* @param string $name the ID of the model to be loaded
|
|
|
|
* @return Program the loaded model
|
|
|
|
* @throws CHttpException
|
|
|
|
*/
|
|
|
|
public function loadModelByName($name)
|
|
|
|
{
|
|
|
|
$model=Program::model()->findByAttributes(['Name' => $name]);
|
|
|
|
if ($model===null) {
|
2014-05-28 17:19:57 +02:00
|
|
|
throw new CHttpException(404,'The requested programm (by Name) does not exist.');
|
2014-05-28 11:26:17 +02:00
|
|
|
}
|
|
|
|
return $model;
|
|
|
|
}
|
|
|
|
|
2014-05-19 10:16:43 +02:00
|
|
|
/**
|
|
|
|
* Performs the AJAX validation.
|
2014-05-28 11:02:52 +02:00
|
|
|
* @param Program $model the model to be validated
|
2014-05-19 10:16:43 +02:00
|
|
|
*/
|
|
|
|
protected function performAjaxValidation($model)
|
|
|
|
{
|
2014-05-28 11:02:52 +02:00
|
|
|
if (isset($_POST['ajax']) && $_POST['ajax']==='program-form') {
|
2014-05-19 10:16:43 +02:00
|
|
|
echo CActiveForm::validate($model);
|
|
|
|
Yii::app()->end();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|