diff options
Diffstat (limited to 'application/controllers/ClientController.php')
| -rw-r--r-- | application/controllers/ClientController.php | 25 |
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 + } + + +} + + + |
