diff options
| author | michael pereira | 2011-03-16 10:09:45 +0100 |
|---|---|---|
| committer | michael pereira | 2011-03-16 10:09:45 +0100 |
| commit | aa44f9fcb6273a9e20596e788b10c240601c3d1d (patch) | |
| tree | 154813670be6d64322eecdd04084ba232554e3a0 /application/modules/user/controllers | |
| parent | Ressource Controller setzt jetzt die Session fuer ausgewaehltes Bootmenuentry (diff) | |
| parent | aufruf verschoben (diff) | |
| download | pbs2-aa44f9fcb6273a9e20596e788b10c240601c3d1d.tar.gz pbs2-aa44f9fcb6273a9e20596e788b10c240601c3d1d.tar.xz pbs2-aa44f9fcb6273a9e20596e788b10c240601c3d1d.zip | |
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/modules/user/controllers')
12 files changed, 203 insertions, 2 deletions
diff --git a/application/modules/user/controllers/AuthController.php b/application/modules/user/controllers/AuthController.php new file mode 100644 index 0000000..4721616 --- /dev/null +++ b/application/modules/user/controllers/AuthController.php @@ -0,0 +1,18 @@ +<?php + +class User_AuthController extends Zend_Controller_Action +{ + + public function init() + { + /* Initialize action controller here */ + } + + public function indexAction() + { + // action body + } + + +} + diff --git a/application/modules/user/controllers/BootisoController.php b/application/modules/user/controllers/BootisoController.php new file mode 100644 index 0000000..492e035 --- /dev/null +++ b/application/modules/user/controllers/BootisoController.php @@ -0,0 +1,18 @@ +<?php + +class User_BootisoController extends Zend_Controller_Action +{ + + public function init() + { + /* Initialize action controller here */ + } + + public function indexAction() + { + // action body + } + + +} + diff --git a/application/modules/user/controllers/BootmenuController.php b/application/modules/user/controllers/BootmenuController.php new file mode 100644 index 0000000..2ecab8d --- /dev/null +++ b/application/modules/user/controllers/BootmenuController.php @@ -0,0 +1,18 @@ +<?php + +class User_BootmenuController extends Zend_Controller_Action +{ + + public function init() + { + /* Initialize action controller here */ + } + + public function indexAction() + { + // action body + } + + +} + diff --git a/application/modules/user/controllers/BootosController.php b/application/modules/user/controllers/BootosController.php new file mode 100644 index 0000000..7fc72d1 --- /dev/null +++ b/application/modules/user/controllers/BootosController.php @@ -0,0 +1,18 @@ +<?php + +class User_BootosController extends Zend_Controller_Action +{ + + public function init() + { + /* Initialize action controller here */ + } + + public function indexAction() + { + // action body + } + + +} + diff --git a/application/modules/user/controllers/ClientController.php b/application/modules/user/controllers/ClientController.php new file mode 100644 index 0000000..54280f4 --- /dev/null +++ b/application/modules/user/controllers/ClientController.php @@ -0,0 +1,18 @@ +<?php + +class User_ClientController extends Zend_Controller_Action +{ + + public function init() + { + /* Initialize action controller here */ + } + + public function indexAction() + { + // action body + } + + +} + diff --git a/application/modules/user/controllers/ConfigController.php b/application/modules/user/controllers/ConfigController.php new file mode 100644 index 0000000..ffc5387 --- /dev/null +++ b/application/modules/user/controllers/ConfigController.php @@ -0,0 +1,18 @@ +<?php + +class User_ConfigController extends Zend_Controller_Action +{ + + public function init() + { + /* Initialize action controller here */ + } + + public function indexAction() + { + // action body + } + + +} + diff --git a/application/modules/user/controllers/FilterController.php b/application/modules/user/controllers/FilterController.php new file mode 100644 index 0000000..2704309 --- /dev/null +++ b/application/modules/user/controllers/FilterController.php @@ -0,0 +1,18 @@ +<?php + +class User_FilterController extends Zend_Controller_Action +{ + + public function init() + { + /* Initialize action controller here */ + } + + public function indexAction() + { + // action body + } + + +} + diff --git a/application/modules/user/controllers/GroupController.php b/application/modules/user/controllers/GroupController.php new file mode 100644 index 0000000..21944d3 --- /dev/null +++ b/application/modules/user/controllers/GroupController.php @@ -0,0 +1,18 @@ +<?php + +class User_GroupController extends Zend_Controller_Action +{ + + public function init() + { + /* Initialize action controller here */ + } + + public function indexAction() + { + // action body + } + + +} + diff --git a/application/modules/user/controllers/IndexController.php b/application/modules/user/controllers/IndexController.php index 3a18bff..1d41157 100644 --- a/application/modules/user/controllers/IndexController.php +++ b/application/modules/user/controllers/IndexController.php @@ -9,8 +9,11 @@ class User_IndexController extends Zend_Controller_Action } public function indexAction() - { - echo 'test'; + { + $n = new Pbs_PbsSession(); + $session = new Application_Model_Session(); + $session->setID('1'); + $n->createsession($session); } diff --git a/application/modules/user/controllers/PersonController.php b/application/modules/user/controllers/PersonController.php new file mode 100644 index 0000000..f43989a --- /dev/null +++ b/application/modules/user/controllers/PersonController.php @@ -0,0 +1,18 @@ +<?php + +class User_PersonController extends Zend_Controller_Action +{ + + public function init() + { + /* Initialize action controller here */ + } + + public function indexAction() + { + // action body + } + + +} + diff --git a/application/modules/user/controllers/PoolController.php b/application/modules/user/controllers/PoolController.php new file mode 100644 index 0000000..caa7dd4 --- /dev/null +++ b/application/modules/user/controllers/PoolController.php @@ -0,0 +1,18 @@ +<?php + +class User_PoolController extends Zend_Controller_Action +{ + + public function init() + { + /* Initialize action controller here */ + } + + public function indexAction() + { + // action body + } + + +} + diff --git a/application/modules/user/controllers/RoleController.php b/application/modules/user/controllers/RoleController.php new file mode 100644 index 0000000..d7abc62 --- /dev/null +++ b/application/modules/user/controllers/RoleController.php @@ -0,0 +1,18 @@ +<?php + +class User_RoleController extends Zend_Controller_Action +{ + + public function init() + { + /* Initialize action controller here */ + } + + public function indexAction() + { + // action body + } + + +} + |
