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



                                                    

                            
 

                              
                                                              


                                                                
 

                                     
 
         

 
 
<?php

class IndexController extends Zend_Controller_Action
{
	protected $config;
	protected $pbs2host;

	public function init()
	{
		$bootstrap = $this->getInvokeArg('bootstrap');
		$this->config = $bootstrap->getOptions();
		$this->pbs2host = $this->config['pbs2']['host'];
	}

	public function indexAction()
	{

	}


}