Index.php
316 Bytes
<?php
use Action\AbstractAction;
use LibModels\Wap\Guang\PlusstarData;
/**
* 频道选择
*/
class IndexController extends AbstractAction
{
public function indexAction()
{
$this->_view->assign('title', 'YOHO!有货');
$this->_view->display('index', array('test' => 'hello world'));
}
}