IndexController.class.php
403 Bytes
<?php
/**
* 管理助手
*/
namespace Frontend\Controller\Index;
class IndexController extends \Common\Controller\Frontend\AbstractController
{
/**
* 不是必须登录
* @var string $_require_login
*/
protected $_require_login = false;
public function Index()
{
redirectFront('/app/page/helper/helper-list', array('_identifier' => APP_IDENTIFIER));
}
}