27 lines
302 B
PHP
27 lines
302 B
PHP
<?php
|
|
|
|
class DashboardController extends Zend_Controller_Action
|
|
{
|
|
|
|
public function init()
|
|
{
|
|
/* Initialize action controller here */
|
|
}
|
|
|
|
public function indexAction()
|
|
{
|
|
// action body
|
|
}
|
|
|
|
public function helpAction()
|
|
{
|
|
// action body
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|