diff options
| author | Simon | 2011-03-15 16:17:12 +0100 |
|---|---|---|
| committer | Simon | 2011-03-15 16:17:12 +0100 |
| commit | 78898e977079c1cc9ec85579f671c4bfb5ac8e37 (patch) | |
| tree | c03f229e299386e8c39bd50178aa4fb3f1977dfd /application/modules/user/controllers | |
| parent | jquery für michael eingebettet (diff) | |
| download | pbs2-78898e977079c1cc9ec85579f671c4bfb5ac8e37.tar.gz pbs2-78898e977079c1cc9ec85579f671c4bfb5ac8e37.tar.xz pbs2-78898e977079c1cc9ec85579f671c4bfb5ac8e37.zip | |
Controller für User-Module erstellt
Diffstat (limited to 'application/modules/user/controllers')
11 files changed, 198 insertions, 0 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/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 + } + + +} + |
