2011-02-11 02:48:26 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class DashboardController extends Zend_Controller_Action
|
|
|
|
{
|
|
|
|
|
|
|
|
public function init()
|
|
|
|
{
|
|
|
|
/* Initialize action controller here */
|
|
|
|
}
|
|
|
|
|
|
|
|
public function indexAction()
|
|
|
|
{
|
|
|
|
// action body
|
|
|
|
}
|
|
|
|
|
2011-02-12 00:13:26 +01:00
|
|
|
public function helpAction()
|
|
|
|
{
|
|
|
|
// action body
|
|
|
|
}
|
2011-02-11 02:48:26 +01:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-02-12 00:13:26 +01:00
|
|
|
|
|
|
|
|