blob: 8b185e2190f94a72c4e69582ab91cf2030e6182a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?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 */
/**
* get bootstrap, get resource from bootstrap
* resources are created when an bootstrap _init method returns an object
$bootstrap = $this->getInvokeArg('bootstrap');
$view = $bootstrap->getResource('view');
*/
}
public function indexAction()
{
// action body
}
}
|