summaryrefslogblamecommitdiffstats
path: root/application/controllers/IndexController.php
blob: 5f61df4b3e20228e4eb32c7f2fb07a554a9757ab (plain) (tree)
1
2
3
4
5
6
7
8





                                                    

                                                         



                                 
                          


                                                                                             









                      
<?php

class IndexController extends Zend_Controller_Action
{

    public function init()
    {    	
        /* Initialize action controller here */          
    }

    public function indexAction()
    {
    	print_a($_SERVER);
    	if(stristr($_SERVER['HTTP_USER_AGENT'],'prebootGUI')){        	
	        $this->_forward('index','Index','fbgui'); 			             
        }
        // action body
    } 


}