ListController.class.php 529 Bytes
<?php
/**
 * AuthController.class.php
 * 获取同事圈是否开启发布审核以及评论审核
 * User: heyuelong
 * Date: 2017年4月25日16:28:05
 */
namespace Api\Controller\Setting;

use Common\Common\Config;

class ListController extends \Api\Controller\AbstractController
{

    /**
     * 主方法
     * @return boolean
     */
    public function Index_get()
    {
        $setting=Config::instance()->getCacheData();

        $this->_result = array(
            'list' => $setting['scene_list']
        );
    }
}