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 | |
| 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')
6 files changed, 46 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 + } + + +} + + + + + + + diff --git a/application/views/scripts/session/createsession.phtml b/application/views/scripts/session/createsession.phtml new file mode 100644 index 0000000..81c476e --- /dev/null +++ b/application/views/scripts/session/createsession.phtml @@ -0,0 +1 @@ +<br /><br /><center>View script for controller <b>Session</b> and script/action name <b>createsession</b></center>
\ No newline at end of file diff --git a/application/views/scripts/session/deletesession.phtml b/application/views/scripts/session/deletesession.phtml new file mode 100644 index 0000000..57f8698 --- /dev/null +++ b/application/views/scripts/session/deletesession.phtml @@ -0,0 +1 @@ +<br /><br /><center>View script for controller <b>Session</b> and script/action name <b>deletesession</b></center>
\ No newline at end of file diff --git a/application/views/scripts/session/editsession.phtml b/application/views/scripts/session/editsession.phtml new file mode 100644 index 0000000..987a332 --- /dev/null +++ b/application/views/scripts/session/editsession.phtml @@ -0,0 +1 @@ +<br /><br /><center>View script for controller <b>Session</b> and script/action name <b>editsession</b></center>
\ No newline at end of file diff --git a/application/views/scripts/session/index.phtml b/application/views/scripts/session/index.phtml new file mode 100644 index 0000000..fe3c2d4 --- /dev/null +++ b/application/views/scripts/session/index.phtml @@ -0,0 +1 @@ +<br /><br /><center>View script for controller <b>Session</b> and script/action name <b>index</b></center>
\ No newline at end of file |
