diff options
| author | Simon | 2011-03-06 20:12:10 +0100 |
|---|---|---|
| committer | Simon | 2011-03-06 20:12:10 +0100 |
| commit | bfea08336f782e0e796b15dc7a1b4af4b1e3783a (patch) | |
| tree | e752570b47d3a8604940f0bda58494625c3eaa5f /application/controllers/PoolController.php | |
| parent | clients hinzufügen und entfernen && sql-data erweitert (diff) | |
| download | pbs2-bfea08336f782e0e796b15dc7a1b4af4b1e3783a.tar.gz pbs2-bfea08336f782e0e796b15dc7a1b4af4b1e3783a.tar.xz pbs2-bfea08336f782e0e796b15dc7a1b4af4b1e3783a.zip | |
Pool add, edit und remove hinzugefügt
Diffstat (limited to 'application/controllers/PoolController.php')
| -rw-r--r-- | application/controllers/PoolController.php | 22 |
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 } } + + + + + + |
