IconApiController.class.php
566 Bytes
<?php
/**
* IconApiController.class.php
* 用于提供给运营中心首页 ICON 调用的接口
* @author Deepseath
* @version $Id$
*/
namespace Apicp\Controller\Operate;
class IconApiController extends AbstractController
{
/**
* 栏目接口
*/
public function Index()
{
$this->_result = [
[
'id' => 0,
'name' => '积分排行',
'url' => 'Integral/Frontend/Index/IntegralRank/Index',
'upId' => 0,
]
];
return true;
}
}