22 lines
250 B
PHP
22 lines
250 B
PHP
<?php
|
|
|
|
class DashboardController extends Zend_Controller_Action
|
|
{
|
|
|
|
public function init()
|
|
{
|
|
|
|
}
|
|
|
|
public function indexAction()
|
|
{
|
|
// action body
|
|
}
|
|
|
|
public function helpAction()
|
|
{
|
|
// action body
|
|
}
|
|
|
|
}
|
|
|