summaryrefslogtreecommitdiffstats
path: root/application/controllers
diff options
context:
space:
mode:
authorSimon2011-03-06 20:12:10 +0100
committerSimon2011-03-06 20:12:10 +0100
commitbfea08336f782e0e796b15dc7a1b4af4b1e3783a (patch)
treee752570b47d3a8604940f0bda58494625c3eaa5f /application/controllers
parentclients hinzufügen und entfernen && sql-data erweitert (diff)
downloadpbs2-bfea08336f782e0e796b15dc7a1b4af4b1e3783a.tar.gz
pbs2-bfea08336f782e0e796b15dc7a1b4af4b1e3783a.tar.xz
pbs2-bfea08336f782e0e796b15dc7a1b4af4b1e3783a.zip
Pool add, edit und remove hinzugefügt
Diffstat (limited to 'application/controllers')
-rw-r--r--application/controllers/PoolController.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/application/controllers/PoolController.php b/application/controllers/PoolController.php
index 795fe3a..f9e54be 100644
--- a/application/controllers/PoolController.php
+++ b/application/controllers/PoolController.php
@@ -10,9 +10,31 @@ class PoolController extends Zend_Controller_Action
public function indexAction()
{
+ $poolMapper = new Application_Model_PoolMapper();
+ $this->view->pools = $poolMapper->fetchAll();
+ }
+
+ public function createpoolAction()
+ {
+ // action body
+ }
+
+ public function deletepoolAction()
+ {
+ // action body
+ }
+
+ public function editpoolAction()
+ {
// action body
}
}
+
+
+
+
+
+