diff options
| author | Simon | 2011-03-18 18:49:30 +0100 |
|---|---|---|
| committer | Simon | 2011-03-18 18:49:30 +0100 |
| commit | 5139008cee049b2ab24b870a263996fe9043adeb (patch) | |
| tree | a79c36fce9afc587c73cd4e71c94e72bbc83830e /application/controllers/IndexController.php | |
| parent | Ansicht von Pools geändert (diff) | |
| download | pbs2-5139008cee049b2ab24b870a263996fe9043adeb.tar.gz pbs2-5139008cee049b2ab24b870a263996fe9043adeb.tar.xz pbs2-5139008cee049b2ab24b870a263996fe9043adeb.zip | |
User-Oberfläche, FBGui-Oberfläche legt Session&Clients an - für Kiosk-System
apache-default zum ersetzen, damit server von außen erreichbar ist
FilterController weitergearbeitet
Diffstat (limited to 'application/controllers/IndexController.php')
| -rw-r--r-- | application/controllers/IndexController.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/application/controllers/IndexController.php b/application/controllers/IndexController.php index df2f91c..9a65853 100644 --- a/application/controllers/IndexController.php +++ b/application/controllers/IndexController.php @@ -6,6 +6,17 @@ class IndexController extends Zend_Controller_Action public function init() { /* Initialize action controller here */ + if(stristr($_SERVER['HTTP_USER_AGENT'],'prebootGUI')){ + $redirector = $this->_helper->getHelper('Redirector'); + $redirector->gotoSimple('index', + 'Index', + 'fbgui', + array('keys' => array_keys($_POST), + 'post' => $_POST + ) + ); + + } } public function indexAction() |
