summaryrefslogtreecommitdiffstats
path: root/application/controllers/ClientController.php
diff options
context:
space:
mode:
authorSimon2011-03-06 18:42:08 +0100
committerSimon2011-03-06 18:42:08 +0100
commit36165ba32a0e45c3c51e84ad4d94f41c861fa804 (patch)
tree9e1618925cc36de28d32b3a6206d62ae33ab0c7b /application/controllers/ClientController.php
parentMerge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2 (diff)
downloadpbs2-36165ba32a0e45c3c51e84ad4d94f41c861fa804.tar.gz
pbs2-36165ba32a0e45c3c51e84ad4d94f41c861fa804.tar.xz
pbs2-36165ba32a0e45c3c51e84ad4d94f41c861fa804.zip
Client und Pool-Controller hinzugefügt && addclientAction hinzugefügt
Diffstat (limited to 'application/controllers/ClientController.php')
-rw-r--r--application/controllers/ClientController.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/application/controllers/ClientController.php b/application/controllers/ClientController.php
new file mode 100644
index 0000000..6c72fc3
--- /dev/null
+++ b/application/controllers/ClientController.php
@@ -0,0 +1,25 @@
+<?php
+
+class ClientController extends Zend_Controller_Action
+{
+
+ public function init()
+ {
+ /* Initialize action controller here */
+ }
+
+ public function indexAction()
+ {
+ // action body
+ }
+
+ public function addclientAction()
+ {
+ // action body
+ }
+
+
+}
+
+
+