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/SessionController.php | |
| 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/SessionController.php')
| -rw-r--r-- | application/controllers/SessionController.php | 39 |
1 files changed, 39 insertions, 0 deletions
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 + } + + +} + + + + + + + |
