diff options
| author | michael pereira | 2011-03-15 11:35:00 +0100 |
|---|---|---|
| committer | michael pereira | 2011-03-15 11:35:00 +0100 |
| commit | 3f9700079f95c7fb715e5c9363e48dce6c7c627f (patch) | |
| tree | 17fe70fcfbe651a9c52194423a67bac5a9c692e9 /application/modules/dev/controllers/RoleController.php | |
| parent | Ressource Controller (diff) | |
| parent | links korrigiert, dev ist nun lauffähig (diff) | |
| download | pbs2-3f9700079f95c7fb715e5c9363e48dce6c7c627f.tar.gz pbs2-3f9700079f95c7fb715e5c9363e48dce6c7c627f.tar.xz pbs2-3f9700079f95c7fb715e5c9363e48dce6c7c627f.zip | |
Ressource gelöscht
Diffstat (limited to 'application/modules/dev/controllers/RoleController.php')
| -rw-r--r-- | application/modules/dev/controllers/RoleController.php | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/application/modules/dev/controllers/RoleController.php b/application/modules/dev/controllers/RoleController.php new file mode 100644 index 0000000..2f2de2d --- /dev/null +++ b/application/modules/dev/controllers/RoleController.php @@ -0,0 +1,64 @@ +<?php + +class dev_RoleController extends Zend_Controller_Action +{ + + public function init() + { + if (Zend_Auth::getInstance()->hasIdentity()) { + + } else { + $this->_helper->redirector('dev', 'login', 'auth'); + } + } + + public function indexAction() + { + + } + + public function addAction() + { + + } + + public function editAction() + { + + } + + public function showAction() + { + + } + + public function deleteAction() + { + + } + + public function linkrightAction() + { + // action body + } + + public function unlinkrightAction() + { + // action body + } + + +} + + + + + + + + + + + + + |
