AdminAction::weibaAuditConfig PHP Method

weibaAuditConfig() public method

微吧审核配置
public weibaAuditConfig ( )
    public function weibaAuditConfig()
    {
        $this->_initWeibaListAdminMenu();
        $this->pageKeyList = array('apply_weiba_open', 'follower_open', 'follower', 'level_open', 'level', 'weiba_post_open', 'weiba_post', 'manager_open');
        $this->savePostUrl = U('weiba/Admin/doWeibaAuditConfig');
        $this->opt['apply_weiba_open'] = array('0' => '否', '1' => '是');
        $this->opt['follower_open'] = array('0' => '否', '1' => '是');
        $this->opt['level_open'] = array('0' => '否', '1' => '是');
        $this->opt['weiba_post_open'] = array('0' => '否', '1' => '是');
        $this->opt['manager_open'] = array('0' => '否', '1' => '是');
        $weibaAuditConfig = model('Xdata')->get('weiba_Admin:weibaAuditConfig');
        // dump($weibaAuditConfig);exit;
        $this->displayConfig($weibaAuditConfig);
    }