2010-03-31 14:43:49 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author markus
|
|
|
|
* $Id: IndexController.php 6 2009-11-18 14:52:50Z markus $
|
|
|
|
*/
|
|
|
|
|
|
|
|
class IndexController extends Zend_Controller_Action
|
|
|
|
{
|
|
|
|
|
|
|
|
public function init()
|
|
|
|
{
|
|
|
|
/* Initialize action controller here */
|
2015-08-09 17:12:51 +00:00
|
|
|
/**
|
|
|
|
* get bootstrap, get resource from bootstrap
|
|
|
|
* resources are created when an bootstrap _init method returns an object
|
|
|
|
$bootstrap = $this->getInvokeArg('bootstrap');
|
2010-03-31 14:43:49 +00:00
|
|
|
$view = $bootstrap->getResource('view');
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
public function indexAction()
|
|
|
|
{
|
|
|
|
// action body
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|