diff options
Diffstat (limited to 'protected/controllers/MyAngebotController.php')
| -rw-r--r-- | protected/controllers/MyAngebotController.php | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/protected/controllers/MyAngebotController.php b/protected/controllers/MyAngebotController.php new file mode 100644 index 0000000..c53da98 --- /dev/null +++ b/protected/controllers/MyAngebotController.php @@ -0,0 +1,73 @@ +<?php + +class MyAngebotController extends Controller +{ + + /** + * @return array action filters + */ + public function filters() + { + return array( + 'accessControl', // perform access control for CRUD operations + ); + } + + /** + * 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 authenticated user + 'actions'=>array('create','index','delete','update','view'), + 'users'=>array('@'), + ), + array('deny', // deny all users + 'users'=>array('*'), + ), + ); + } + public function actionIndex() + { + $model=new AngebotVerein('search'); + $model->unsetAttributes(); // clear any default values + if (isset($_GET['AngebotVerein'])) { + $model->attributes = $_GET['AngebotVerein']; + } + $model->verein_id = Yii::app()->user->vereinId; + + $this->render('index',array( + 'model'=>$model, + )); + } + + // Uncomment the following methods and override them if needed + /* + public function filters() + { + // return the filter configuration for this controller, e.g.: + return array( + 'inlineFilterName', + array( + 'class'=>'path.to.FilterClass', + 'propertyName'=>'propertyValue', + ), + ); + } + + public function actions() + { + // return external action classes, e.g.: + return array( + 'action1'=>'path.to.ActionClass', + 'action2'=>array( + 'class'=>'path.to.AnotherActionClass', + 'propertyName'=>'propertyValue', + ), + ); + } + */ +}
\ No newline at end of file |
