diff options
| author | Simon | 2011-03-08 14:53:21 +0100 |
|---|---|---|
| committer | Simon | 2011-03-08 14:53:21 +0100 |
| commit | 03acf25abb83f79569fff49445848b6dc4c2a4c1 (patch) | |
| tree | ec3dc4a201dfa9cf05cacbc501229fd2a2e2d984 /application/controllers | |
| parent | pools nun besser bearbeitbar (diff) | |
| download | pbs2-03acf25abb83f79569fff49445848b6dc4c2a4c1.tar.gz pbs2-03acf25abb83f79569fff49445848b6dc4c2a4c1.tar.xz pbs2-03acf25abb83f79569fff49445848b6dc4c2a4c1.zip | |
session hinzugefügt
Diffstat (limited to 'application/controllers')
| -rw-r--r-- | application/controllers/IndexController.php | 5 | ||||
| -rw-r--r-- | application/controllers/SessionController.php | 39 |
2 files changed, 42 insertions, 2 deletions
diff --git a/application/controllers/IndexController.php b/application/controllers/IndexController.php index 1ff6319..df2f91c 100644 --- a/application/controllers/IndexController.php +++ b/application/controllers/IndexController.php @@ -11,11 +11,12 @@ class IndexController extends Zend_Controller_Action public function indexAction() { // action body - } - + } } + + diff --git a/application/controllers/SessionController.php b/application/controllers/SessionController.php new file mode 100644 index 0000000..382e68e --- /dev/null +++ b/application/controllers/SessionController.php @@ -0,0 +1,39 @@ +<?php + +class SessionController extends Zend_Controller_Action +{ + + public function init() + { + /* Initialize action controller here */ + } + + public function indexAction() + { + // action body + } + + public function createsessionAction() + { + // action body + } + + public function editsessionAction() + { + // action body + } + + public function deletesessionAction() + { + // action body + } + + +} + + + + + + + |
