diff options
| author | Simon | 2011-03-19 13:35:22 +0100 |
|---|---|---|
| committer | Simon | 2011-03-19 13:35:22 +0100 |
| commit | 509df04555d1289aa6df9023c07448e5d4d6b95a (patch) | |
| tree | 642b722dfeaa8edf5616f7ea4763173f151bca32 /application/modules/fbgui/controllers/IndexController.php | |
| parent | Filter korrigiert (diff) | |
| download | pbs2-509df04555d1289aa6df9023c07448e5d4d6b95a.tar.gz pbs2-509df04555d1289aa6df9023c07448e5d4d6b95a.tar.xz pbs2-509df04555d1289aa6df9023c07448e5d4d6b95a.zip | |
Filter funktioniert nun, FBGui IndexController angepasst
Diffstat (limited to 'application/modules/fbgui/controllers/IndexController.php')
| -rw-r--r-- | application/modules/fbgui/controllers/IndexController.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/application/modules/fbgui/controllers/IndexController.php b/application/modules/fbgui/controllers/IndexController.php index c55ea50..f5f8cdf 100644 --- a/application/modules/fbgui/controllers/IndexController.php +++ b/application/modules/fbgui/controllers/IndexController.php @@ -43,16 +43,21 @@ class Fbgui_IndexController extends Zend_Controller_Action $session = $n->createSession($session); $_SESSION['alphasessionID'] = $session->getAlphasessionID(); echo "<h1>Welcome</h1>"; - print_a('Session is now set','Your alphasessionID is '.$session->getAlphasessionID()); + print_a('Session is now set', + 'Your sessionID is '.$session->getID(), + 'Your alphasessionID is '.$session->getAlphasessionID(), + 'Your client is '.$session->getClientID()); // Request Bootmenu $pbsFilter = new Pbs_Filter(); $bootmenuID = $pbsFilter->evaluate(); print_a('bootmenuID is ',$bootmenuID); - if($bootmenuID != null){ + if($bootmenuID != null){ + print_a('goto bootmenu'); #$this->_redirect('/dev/bootmenu/index/bootmenuid/'.$bootmenuID); } else{ + print_a('no filter is valid, goto login'); #$this->_redirect('/dev/auth/index/'); } } |
