Index.php
393 Bytes
<?php
use Action\AbstractAction;
/**
* 购物车相关的控制器
*
* @name IndexController
* @package Cart
* @copyright yoho.inc
* @version 1.0 (2015-10-28 16:34:17)
* @author fei.hong <fei.hong@yoho.cn>
*/
class IndexController extends AbstractAction
{
public function indexAction()
{
// 跳转到老版
$this->go(OLD_MAIN . '/cart/index/index');
}
}