diff options
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 + } + + +} + + + + + + + |
