diff options
| author | Simon | 2011-03-16 12:07:20 +0100 |
|---|---|---|
| committer | Simon | 2011-03-16 12:07:20 +0100 |
| commit | 4833ec55bbe8c7696cc4c75a0793950ced840418 (patch) | |
| tree | 09d6237e0d4ca5932ca0a33f05e1366b60bf759d /application/modules/user/controllers | |
| parent | session erstellen in fbgui verschoben, library kann von überall verwendet we... (diff) | |
| download | pbs2-4833ec55bbe8c7696cc4c75a0793950ced840418.tar.gz pbs2-4833ec55bbe8c7696cc4c75a0793950ced840418.tar.xz pbs2-4833ec55bbe8c7696cc4c75a0793950ced840418.zip | |
controller und actions für Client und Pool hinzugefügt
Diffstat (limited to 'application/modules/user/controllers')
| -rw-r--r-- | application/modules/user/controllers/ClientController.php | 21 | ||||
| -rw-r--r-- | application/modules/user/controllers/PoolController.php | 35 |
2 files changed, 56 insertions, 0 deletions
diff --git a/application/modules/user/controllers/ClientController.php b/application/modules/user/controllers/ClientController.php index 54280f4..cb139d5 100644 --- a/application/modules/user/controllers/ClientController.php +++ b/application/modules/user/controllers/ClientController.php @@ -13,6 +13,27 @@ class User_ClientController extends Zend_Controller_Action // action body } + public function addclientAction() + { + // action body + } + + public function removeclientAction() + { + // action body + } + + public function editclientAction() + { + // action body + } + } + + + + + + diff --git a/application/modules/user/controllers/PoolController.php b/application/modules/user/controllers/PoolController.php index caa7dd4..cf4dfe7 100644 --- a/application/modules/user/controllers/PoolController.php +++ b/application/modules/user/controllers/PoolController.php @@ -13,6 +13,41 @@ class User_PoolController extends Zend_Controller_Action // action body } + public function createpoolAction() + { + // action body + } + + public function deletepoolAction() + { + // action body + } + + public function editpoolAction() + { + // action body + } + + public function linkclientAction() + { + // action body + } + + public function unlinkclientAction() + { + // action body + } + } + + + + + + + + + + |
