diff options
| author | Simon | 2011-03-16 13:01:28 +0100 |
|---|---|---|
| committer | Simon | 2011-03-16 13:01:28 +0100 |
| commit | b99d7a884edabd9e5d297c8117ee7552ca702b96 (patch) | |
| tree | 185a8b8a4cdbb868380a1549f0e540c4174f5dae /application/modules/user/controllers/IndexController.php | |
| parent | controller und actions für Client und Pool hinzugefügt (diff) | |
| download | pbs2-b99d7a884edabd9e5d297c8117ee7552ca702b96.tar.gz pbs2-b99d7a884edabd9e5d297c8117ee7552ca702b96.tar.xz pbs2-b99d7a884edabd9e5d297c8117ee7552ca702b96.zip | |
Arbeiten am Clientcontroller, Membership in Auth gesetzt
Diffstat (limited to 'application/modules/user/controllers/IndexController.php')
| -rw-r--r-- | application/modules/user/controllers/IndexController.php | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/application/modules/user/controllers/IndexController.php b/application/modules/user/controllers/IndexController.php index d39ff21..8b295e0 100644 --- a/application/modules/user/controllers/IndexController.php +++ b/application/modules/user/controllers/IndexController.php @@ -2,17 +2,26 @@ class User_IndexController extends Zend_Controller_Action { - public function init() { /* Initialize action controller here */ } - public function indexAction() - { - + public function indexAction() + { + if (!Zend_Auth::getInstance()->hasIdentity()) { + $this->view->text = 'Your not logged in, please log in first <a href="/user/auth/">here</a>.'; + } + else{ + $this->view->text = "You're Welcome"; + $links = array( + '/user/person' => 'Change your Details', + '/user/person/request' => 'Request Membership in a Group', + '/user/config' => 'Create your own Configuration', + '/user/bootmenu' => 'Create your Bootmenu', + ); + } + $this->view->links = $links; } - - } |
