diff options
| author | Simon | 2011-01-17 13:18:35 +0100 |
|---|---|---|
| committer | Simon | 2011-01-17 13:18:35 +0100 |
| commit | 875dbf26df46068d505070807ae8eb787ebc79f4 (patch) | |
| tree | df93776fb62b4cfe8eca71de581d5e17eec2b7ce /application/controllers/IndexController.php | |
| parent | zend lokal einrichten (diff) | |
| download | pbs2-875dbf26df46068d505070807ae8eb787ebc79f4.tar.gz pbs2-875dbf26df46068d505070807ae8eb787ebc79f4.tar.xz pbs2-875dbf26df46068d505070807ae8eb787ebc79f4.zip | |
Initialize Zend
Diffstat (limited to 'application/controllers/IndexController.php')
| -rw-r--r-- | application/controllers/IndexController.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/application/controllers/IndexController.php b/application/controllers/IndexController.php new file mode 100644 index 0000000..0c4fe03 --- /dev/null +++ b/application/controllers/IndexController.php @@ -0,0 +1,18 @@ +<?php + +class IndexController extends Zend_Controller_Action +{ + + public function init() + { + /* Initialize action controller here */ + } + + public function indexAction() + { + // action body + } + + +} + |
