SettingGetController.class.php
345 Bytes
<?php
/**
* 获取管理助手筛选条件.(角色or岗位)
*
* author: gaoyaqiu
*/
namespace Apicp\Controller\Ranking;
class SettingGetController extends AbstractController
{
public function Index()
{
$this->_result = array(
'rank_filter' => $this->getRankFilter()
);
return true;
}
}