getRow_db($user_id,array('id','score','online_time','user_level'));
user_leverl_syn($user_data);
$level=$GLOBALS['db']->getRow("select ul.name as leve_name,ul.score as l_score from ".DB_PREFIX."user_level as ul where ul.level=".intval($user_data['user_level']));
$m_config = load_auto_cache("m_config");
$level['u_score'] = $user_data['score']+floor($user_data['online_time']*floatval($m_config['onlinetime_to_experience']));
$level['up_score'] = $GLOBALS['db']->getOne("select score from ".DB_PREFIX."user_level where level=".intval($user_data['user_level']+1));
if(intval($level['up_score'])<=0){
$l_up_score = $GLOBALS['db']->getOne("select score from ".DB_PREFIX."user_level where level>".intval($user_data['user_level']+1));
if($l_up_score['score']>0){
$level['up_score'] =$l_up_score['score'];
}else{
$level['up_score'] ='满级';
}
}
$user_data['user_level'] = $level['name'];
$root = $level;
$root['status'] = 1;
$root['error'] = '';
}
$root['page_title'] = '等级';
api_ajax_return($root);
}
//我的收益
public function profit(){
$root = array();
if(!$GLOBALS['user_info']){
$root['error'] = "用户未登陆,请先登陆.";
$root['status'] = 0;
$root['user_login_status'] = 0;//有这个参数: user_login_status = 0 时,表示服务端未登陆、要求登陆,操作
}else{
$user_id = intval($GLOBALS['user_info']['id']);
//$profit= $GLOBALS['db']->getRow("select ticket,money,subscribe,wx_openid,mobile from ".DB_PREFIX."user where id=".$user_id);
fanwe_require(APP_ROOT_PATH.'mapi/lib/redis/UserRedisService.php');
$user_redis = new UserRedisService();
//$profit = $user_redis->getRow_db($user_id,array('ticket','money','subscribe','wx_openid','mobile','refund_ticket','binding_alipay'));
$profit = $GLOBALS['db']->getRow("select ticket,money,refund_ticket,subscribe,wx_openid,binding_alipay,weibo_refund_money,weibo_money from ".DB_PREFIX."user where id = ".$user_id);
//$root = $profit;
$root['status'] = 1;
$root['error'] = '';
$m_config = load_auto_cache("m_config");//初始化手机端配置
$root['ticket_catty_ratio'] = floatval($m_config['ticket_catty_ratio']);//提现比例
//公会长提现比例特殊
if (OPEN_SOCIETY_MODULE){
$society_info = $GLOBALS['db']->getRow("select society_id,society_chieftain from ".DB_PREFIX."user where id=".$user_id);
if (intval($society_info['society_chieftain'])){//判断是否是公会长
$refund_rate = $GLOBALS['db']->getOne("select refund_rate from ".DB_PREFIX."society where id=".$society_info['society_id']);
$root['ticket_catty_ratio'] = floatval($refund_rate);
if ($root['ticket_catty_ratio'] > 1 || $root['ticket_catty_ratio'] <= 0){
$root['ticket_catty_ratio'] = $m_config['society_public_rate'];
}
}
}
$root['ticket'] =intval($profit['ticket']);
$root['money'] = number_format(intval($profit['ticket']-$profit['refund_ticket'])*floatval($root['ticket_catty_ratio']),2);
$root['useable_ticket'] =intval($profit['ticket']-$profit['refund_ticket']);
$root['subscribe'] =intval($profit['subscribe']);
$root['weibo_money'] = number_format($profit['weibo_money']-$profit['weibo_refund_money'],2);
//$root['weibo_refund_money'] = number_format($profit['weibo_refund_money'],2);
$root['weibo_total_money'] = number_format($profit['weibo_money'],2);
//最小提现印票
$root['ticket_catty_min'] = intval(intval($m_config['ticket_catty_min'])/floatval($root['ticket_catty_ratio']));
//添加微信公众号名称
$root['subscription'] =mb_strlen($m_config['subscription'])?$m_config['subscription']:'';
//每日可提现印票
if (floatval($root['ticket_catty_ratio']) > 0){
$root['day_ticket_max'] = intval(intval($m_config['day_cash_max'])/floatval($root['ticket_catty_ratio']));
}
//是否有未处理的提现
if($GLOBALS['db']->getOne("select count(*) FROM ".DB_PREFIX."user_refund WHERE user_id = ".$user_id." and (is_pay =0 or is_pay=1)") > 0){
$root['refund_exist'] = 1;
}else{
$root['refund_exist'] = 0;
}
if($profit['wx_openid']!='')
$root['binding_wx'] = 1;
else
$root['binding_wx'] = 0;
if($profit['mobile']!='')
$root['mobile_exist'] = 1;
else
$root['mobile_exist'] = 0;
if(OPEN_PAI_MODULE==1){
$rs = FanweServiceCall("user_center","profit",array("user_id"=>$user_id));
}
//$rs = FanweServiceCall("user_center","profit",array("user_id"=>$user_id));
//$rs['pai_income_done'] = 0;
//$rs['pai_income_undone'] = 0;
$root['show_pai_ticket'] = 0;
$root['pai_ticket'] = intval($rs['pai_income_done']);
$root['pai_wait_ticket'] = intval($rs['pai_income_undone']);
$root['show_goods_ticket'] = 0;
$root['goods_ticket'] = intval($rs['goods_income_done']);
$root['goods_wait_ticket'] = intval($rs['goods_income_undone']);
//是否绑定支付宝 0指未绑定, 1指已绑定
$root['binding_alipay'] = intval($profit['binding_alipay']);
//提现开启或关闭 1:开启 0:关闭
$root['is_refund'] = $m_config['is_refund'];
if (intval($m_config['is_refund']) == 1){//提现是开启的
//开启微信还是支付宝提现
$withdrawals_type = intval($m_config['withdrawals_type']);
if($withdrawals_type == 0){
$root['withdrawals_wx'] = 1;
$root['withdrawals_alipay'] = 0;
}else{
$root['withdrawals_wx'] = 0;
$root['withdrawals_alipay'] = 1;
}
}else{//提现是关闭的,微信支付宝均设为0
$root['withdrawals_wx'] = 0;
$root['withdrawals_alipay'] = 0;
}
}
ajax_return($root);
}
//我的收益-兑换规则列表
public function exchange()
{
$root = array('status'=>1,'error'=>'');
$m_config = load_auto_cache("m_config");//初始化手机端配置
if(!$GLOBALS['user_info']){
$root['error'] = "用户未登陆,请先登陆.";
$root['status'] = 0;
$root['user_login_status'] = 0;//有这个参数: user_login_status = 0 时,表示服务端未登陆、要求登陆,操作
}else{
$exchange_rules = $video_new = $GLOBALS['db']->getAll("select er.id,er.diamonds,er.ticket from ".DB_PREFIX."exchange_rule as er where is_effect=1 and is_delete=0 order by er.diamonds");
$root['exchange_rules'] = $exchange_rules;
//$user = $GLOBALS['db']->getRow("select ticket,diamonds from ".DB_PREFIX."user where id=".$GLOBALS['user_info']['id'],true,true);
fanwe_require(APP_ROOT_PATH.'mapi/lib/redis/UserRedisService.php');
$user_redis = new UserRedisService();
$user = $user_redis->getRow_db($GLOBALS['user_info']['id'],array('ticket','diamonds','refund_ticket'));
$GLOBALS['user_info']['ticket'] = intval($user['ticket']);
$root['ticket'] = intval($user['ticket']);
$GLOBALS['user_info']['refund_ticket'] = intval($user['refund_ticket']);
$root['refund_ticket'] = intval($user['refund_ticket']);//已使用的印票
$GLOBALS['user_info']['diamonds'] = intval($user['diamonds']);
$root['diamonds'] = intval($user['diamonds']);
$root['useable_ticket'] =intval($user['ticket']-$user['refund_ticket']);
//兑换规则
//$ratio = floatval(app_conf('TICKET_CATTY_RATIO'));
$ratio = $m_config['exchange_rate'];
$root['ratio'] = $ratio;
$m_config = load_auto_cache("m_config");
$exchange_rate = floatval($m_config['exchange_rate']);
//兑换最低票数
if($exchange_rate>0){
$min_ticket = floatval(1/$exchange_rate);
$root['min_ticket'] = $min_ticket;
}else{
$root['min_ticket'] = 0;
}
}
ajax_return($root);
}
//我的收益-兑换功能
public function do_exchange(){
$root = array();
if(!$GLOBALS['user_info']){
$root['error'] = "用户未登陆,请先登陆.";
$root['status'] = 0;
$root['user_login_status'] = 0;//有这个参数: user_login_status = 0 时,表示服务端未登陆、要求登陆,操作
}else{
$user_id = intval($GLOBALS['user_info']['id']);//登录用户
$rule_id = intval($_REQUEST['rule_id']);//100
$ticket = intval($_REQUEST['ticket']);//250000
//$user = $GLOBALS['db']->getRow("select ticket,diamonds from ".DB_PREFIX."user where id=".$user_id);
fanwe_require(APP_ROOT_PATH.'mapi/lib/redis/UserRedisService.php');
$user_redis = new UserRedisService();
$user = $user_redis->getRow_db($user_id,array('ticket','diamonds','refund_ticket'));
$m_config = load_auto_cache("m_config");//初始化手机端配置
if($user['ticket']-$user['refund_ticket']<$ticket){
$root['status'] = 0;
$root['error'] = $m_config['ticket_name'].'不足';
$root['ticket'] = $user['ticket'];
$root['refund_ticket'] = $user['refund_ticket'];
$root['diamonds'] = $user['diamonds'];
ajax_return($root);
}
if($rule_id>0){
//兑换规则
$exchange_rule = $video_new = $GLOBALS['db']->getRow("select er.* from ".DB_PREFIX."exchange_rule as er where is_effect=1 and is_delete=0 and id = ".$rule_id." and ticket=".$ticket);
if($exchange_rule){
$diamonds = intval($exchange_rule['diamonds']);
$ticket = intval($exchange_rule['ticket']);
}else{
$root['status'] = 0;
$root['error'] = '兑换出错';
$root['ticket'] = $user['ticket'];
$root['refund_ticket'] = $user['refund_ticket'];
$root['diamonds'] = $user['diamonds'];
ajax_return($root);
}
}else{
//自定义兑换
//$ratio = app_conf('TICKET_CATTY_RATIO');
$ratio = $m_config['exchange_rate'];
$diamonds = intval($ticket*$ratio);
}
if($diamonds>0){
//使用兑换列表的值
$sql = "update ".DB_PREFIX."user set refund_ticket=refund_ticket+".$ticket.",diamonds=diamonds+".$diamonds." where ticket >= refund_ticket + ".$ticket." and id=".$user_id;
$GLOBALS['db']->query($sql);
if($GLOBALS['db']->affected_rows()){
//redis 更新信息
user_deal_to_reids(array($user_id));
$exchange_log = array();
$exchange_log['user_id'] = $user_id;
$exchange_log['rule_id'] = $rule_id;
$exchange_log['diamonds'] = $diamonds;
$exchange_log['ticket'] = $ticket;
$exchange_log['create_time'] = get_gmtime();
$exchange_log['is_success'] = 1;
$GLOBALS['db']->autoExecute(DB_PREFIX."exchange_log",$exchange_log,"INSERT","","SILENT");
//写入用户日志
$data = array();
$data['diamonds'] = intval($diamonds);
$data['ticket'] = intval($ticket);
$param['type'] = 3;//类型 0表示充值 1表示提现 2赠送道具 3 兑换印票
$ticket_name = $m_config['ticket_name']!=''?$m_config['ticket_name']:'印票';
$log_msg = $ticket.$ticket_name.'兑换成'.$diamonds.'钻石';
account_log_com($data,$user_id,$log_msg,$param);
$root['error'] = '兑换成功';
$root['status'] = 1;
}else{
$exchange_log['is_success'] = 0;
$GLOBALS['db']->autoExecute(DB_PREFIX."exchange_log",$exchange_log,"INSERT","","SILENT");
$root['status'] = 0;
$root['error'] = '兑换失败';
}
}
}
//获取新的印票
fanwe_require(APP_ROOT_PATH.'mapi/lib/redis/UserRedisService.php');
$user_redis = new UserRedisService();
$user_new_info = $user_redis->getRow_db($user_id,array('ticket','diamonds','refund_ticket'));
$GLOBALS['user_info']['ticket'] = $user_new_info['ticket'];
$GLOBALS['user_info']['refund_ticket'] = $user_new_info['refund_ticket'];
$GLOBALS['user_info']['diamonds'] = $user_new_info['diamonds'];
$root['ticket'] = $user_new_info['ticket'];
$root['refund_ticket'] = $user_new_info['refund_ticket'];
$root['diamonds'] = $user_new_info['diamonds'];
$root['useable_ticket'] =intval($user_new_info['ticket']-$user_new_info['refund_ticket']);
ajax_return($root);
}
//微信提现
public function money_carry_wx()
{
$root = array();
if(!$GLOBALS['user_info']){
$root['error'] = "用户未登陆,请先登陆.";
$root['status'] = 0;
$root['user_login_status'] = 0;//有这个参数: user_login_status = 0 时,表示服务端未登陆、要求登陆,操作
}else{
$m_config = load_auto_cache("m_config");//初始化手机端配置
if(intval($m_config['is_refund']) != 1 || intval($m_config['withdrawals_type']) != 0)
{
$root['status'] =0;
$root['error'] ='微信提现已经关闭!';
ajax_return($root);
}
//$ticket_info =floatval($GLOBALS['db']->getRow("select ticket,refund_ticket from ".DB_PREFIX."user where id = '".intval($GLOBALS['user_info']['id'])."'"));
fanwe_require(APP_ROOT_PATH.'mapi/lib/redis/UserRedisService.php');
$user_redis = new UserRedisService();
$ticket_info = $user_redis->getRow_db($GLOBALS['user_info']['id'],array('ticket','refund_ticket'));
$ready_refund_ticket =floatval($GLOBALS['db']->getOne("select sum(ticket) from ".DB_PREFIX."user_refund where user_id = ".intval($GLOBALS['user_info']['id'])." and is_pay in (0,1,3)"));
$bank_info['ratio']= floatval($m_config['ticket_catty_ratio']);
$bank_info['can_use_ticket']=$ticket_info['ticket']-$ticket_info['refund_ticket']-$ready_refund_ticket;
$bank_info['ready_refund_ticket']=$ready_refund_ticket;
$root = $bank_info;
$root['status'] = 1;
$root['error'] ='';
}
ajax_return($root);
}
//微信提现
public function submitrefundwx()
{
$root = array();
$id = intval($_REQUEST['id']);
$m_config = load_auto_cache("m_config");//初始化手机端配置
$user_info_wx = es_session::get("user_info_wx");
$user_info =$user_info_wx[$id];
$refresh = SITE_DOMAIN.'/mapi/index.php?ctl=wx_bind';
//$user_info = $GLOBALS['db']->getRow("select * from ".DB_PREFIX."user where id = ".intval($id));
$tips = '
微信提现
xxxx
';
if(!$user_info){
$error = "用户未登陆,请先登陆.";
echo str_replace('xxxx',$error,$tips);return;
}else{
// 进入每月提现一次流程
$month_carry_one = intval($m_config['month_carry_one'])?1:0;
if($month_carry_one){
$ready_refund_info = $GLOBALS['db']->getRow("select * from ".DB_PREFIX."user_refund where user_id = ".intval($user_info['id'])." and is_pay = 3");
$pay_time = $ready_refund_info['pay_time'];
//本月是否有提现
if($pay_time!=''&&(to_date($pay_time,"Ym")==to_date(get_gmtime(),'Ym'))){
$error ='每月只能提现一次,本月已经提现过了';
echo str_replace('xxxx',$error,$tips);return;
}else{
//查看本月允许提现时间
if(to_date(get_gmtime(),'d')intval($m_config['month_carry_max'])){
$error ='每月'.intval($m_config['month_carry_min']).'日到'.intval($m_config['month_carry_max']).'日才能提现';
echo str_replace('xxxx',$error,$tips);return;
}
}
}
$ready_refund_id =intval($GLOBALS['db']->getOne("select id from ".DB_PREFIX."user_refund where user_id = ".intval($user_info['id'])." and (is_pay =0 or is_pay=1)"));
if($ready_refund_id)
{
$error ='您还有未处理的提现!';
echo str_replace('xxxx',$error,$tips);return;
}
fanwe_require(APP_ROOT_PATH.'mapi/lib/redis/UserRedisService.php');
$user_redis = new UserRedisService();
$user_ticket_info = $user_redis->getRow_db($user_info['id'],array('ticket','refund_ticket'));
$memo = "微信提现";
//可用印票
$use_ticket =$user_ticket_info['ticket']-$user_ticket_info['refund_ticket'];
//今日可提现金额
$s_now_time = to_timespan(to_date(NOW_TIME,"Y-m-d 00:00:00"));
$e_now_time = to_timespan(to_date(NOW_TIME,"Y-m-d 23:59:59"));
$ready_refund_info = $GLOBALS['db']->getOne("select sum(money) from " . DB_PREFIX . "user_refund where user_id = " . intval($user_info['id']) . " and is_pay = 3 and pay_time>=".$s_now_time." and pay_time<=".$e_now_time);
$use_cash_money = floatval(floatval($m_config['day_cash_max']) - $ready_refund_info);
$rate = $m_config['ticket_catty_ratio'];
if (OPEN_SOCIETY_MODULE == 1){
$society_info = $GLOBALS['db']->getRow("select society_id,society_chieftain from ".DB_PREFIX."user where id=".$user_info['id']);
if (intval($society_info['society_chieftain']) == 1){
$error ='会长提现,请联系客服!';
echo str_replace('xxxx',$error,$tips);return;
$refund_rate = $GLOBALS['db']->getOne("select refund_rate from ".DB_PREFIX."society where id=".$society_info['society_id']);
$rate = floatval($refund_rate);
}elseif(intval($society_info['society_id'])){
$error ='公会成员不允许提现!';
echo str_replace('xxxx',$error,$tips);return;
$refund_rate = $GLOBALS['db']->getOne("select refund_rate from ".DB_PREFIX."society where id=".$society_info['society_id']);
$rate = floatval($refund_rate);
}
}
//总金额
$use_money = floatval($use_ticket*$rate);
$ticket_catty_min = $m_config['ticket_catty_min']?$m_config['ticket_catty_min']:1;
if($use_money<$ticket_catty_min){
$error = "可领取金额小于提现最低额度".$ticket_catty_min."元!";
echo str_replace('xxxx',$error,$tips);return;
}
$cash_money = strim($_REQUEST['cash_money']);
$num_cash_money = floatval($cash_money);
if(!isset($_REQUEST['cash_money'])){
$error_tip = "";
$cash_money='';
}elseif($cash_money==''){
$error_tip = "请输入领取金额";
$cash_money='';
}elseif(!preg_match('/^[0-9]+(.[0-9]{0,2})?$/', $cash_money)){
$error_tip = "领取金额最多两位小数";
}elseif($num_cash_money<$ticket_catty_min){
$error_tip = "领取金额最低额度为".$ticket_catty_min."元";
}elseif($num_cash_money>$use_money){
$error_tip = "领取金额超过总金额";
}elseif($num_cash_money>$use_cash_money){
$error_tip = "领取金额超过今日可领取金额";
}else{
$ticket = $num_cash_money/$rate;
if($ticket>0&&$num_cash_money>0){
$refund_data['money'] = $num_cash_money;
$refund_data['user_bank_id'] = -1;
$refund_data['ticket'] = $ticket;
$refund_data['user_id'] = $user_info['id'];
$refund_data['create_time'] = NOW_TIME;
$refund_data['memo'] = $memo;
$refund_data['withdrawals_type'] = 0;
$GLOBALS['db']->autoExecute(DB_PREFIX."user_refund",$refund_data);
$error ='提现申请提交成功!';
echo str_replace('xxxx',$error,$tips);return;
}else{
$error ='提现申请提交失败!';
echo str_replace('xxxx',$error,$tips);return;
}
}
$action = SITE_DOMAIN.'/mapi/index.php?ctl=user_center&act=submitrefundwx&id='.$id;
$html = '
'.$user_info['nick_name'].'
'.$user_info['id'].'
'.number_format($use_money,2).'
总金额(元)
'.number_format($use_cash_money,2).'
今日可领取金额(元)
';
echo '
微信提现
'.$html.'
';
}
}
//编辑账户信息初始化
public function user_edit(){
$root = array();
if(!$GLOBALS['user_info']){
$root['error'] = "用户未登陆,请先登陆.";
$root['status'] = 0;
$root['user_login_status'] = 0;//有这个参数: user_login_status = 0 时,表示服务端未登陆、要求登陆,操作
}else{
$root['status'] = 1;
$root['error'] = "";
$user_id = intval($GLOBALS['user_info']['id']);
$sql = "select id as user_id,head_image,nick_name,sex,signature,is_authentication,birthday,emotional_state,province,city,job,is_edit_sex,luck_num from ".DB_PREFIX."user where id=".$user_id;
$user= $GLOBALS['db']->getRow($sql,true,true);
foreach($user as $k=>$v){
$user[$k]= htmlspecialchars_decode($v);
}
$user['head_image'] = get_spec_image($user['head_image']);
$user['birthday'] = date('Y-m-d',$user['birthday']);
$root['user'] = $user;
}
ajax_return($root);
}
//保存账户信息
public function user_save(){
$root = array();
if(!$GLOBALS['user_info']){
$root['error'] = "用户未登陆,请先登陆.";
$root['status'] = 0;
$root['user_login_status'] = 0;//有这个参数: user_login_status = 0 时,表示服务端未登陆、要求登陆,操作
}else{
$user_id = intval($GLOBALS['user_info']['id']);
$user_info_req = $_REQUEST;
foreach($user_info_req as $k=>$v){
if($v!='user_center'||$v!='user_save'){
$user_info[$k] = trim($v);
}
}
//判断性别是否可修改
if(isset($user_info['sex'])){
$user_info['is_edit_sex'] = 0;
}
$user_info['id'] =$user_id;
$user_info['birthday'] = strtotime($user_info['birthday']);
$GLOBALS['db']->query("set names 'utf8mb4'");
if($user_info['birthday']=='')unset($user_info['birthday']);
if($user_info['signature']=='')unset($user_info['signature']);
if($user_info['nick_name']=='')unset($user_info['nick_name']);
$m_config = load_auto_cache("m_config");//初始化手机端配置
//昵称如果等于铭感词,则提示,如果包含 则用*代替
if($m_config['name_limit']==1){
$nick_name=$user_info['nick_name'];
$limit_sql =$GLOBALS['db']->getCol("SELECT name FROM ".DB_PREFIX."limit_name");
$in=in_array($nick_name,$limit_sql);
if($in){
ajax_return(array("sqtatus"=>0,"error"=>'昵称包含敏感词汇'));
}elseif($GLOBALS['db']->getCol("SELECT name FROM ".DB_PREFIX."limit_name WHERE '$nick_name' like concat('%',name,'%')")){
$user_info['nick_name']=str_replace($limit_sql,'*',$nick_name);
}
}
if($GLOBALS['db']->getOne("SELECT nick_name FROM ".DB_PREFIX."user WHERE nick_name ='$nick_name' and id!= $user_id" ))
{
ajax_return(array("status"=>0,"error"=>'昵称被占用,请重新输入'));
}
fanwe_require(APP_ROOT_PATH."system/libs/user.php");
//提交空字段不操作
if($user_info){
$status = save_user($user_info,'UPDATE');
}else{
$root['status'] = 1;
$root['error'] = '';
ajax_return($root);
}
if($status){
//更新session
$user_info = $GLOBALS['db']->getRow("select * from ".DB_PREFIX."user where id =".$status['data']);
es_session::set("user_info", $user_info);
$user_id= $status['data'];
$sql = "select id as user_id,head_image,nick_name,sex,signature,is_authentication,birthday,emotional_state,province,city,job,is_edit_sex from ".DB_PREFIX."user where id=".$user_id;
$user= $GLOBALS['db']->getRow($sql);
$user['head_image'] = get_spec_image($user['head_image']);
$user['birthday'] = date('Y-m-d',$user['birthday']);
$root['status'] = 1;
$root['error'] = '编辑成功';
$root['user'] = $user;
}else{
$root['status'] = 0;
$root['error'] = '编辑失败';
}
}
ajax_return($root);//返回信息缺少认证信息
}
//地区接口
public function region_list(){
$root = array();
$root['status'] = 1;
$root['error'] = '';
$region_list = load_auto_cache("region_list");
$root['region_list'] = $region_list;
$m_config = load_auto_cache("m_config");
$root['region_versions'] =$m_config['region_versions'];
ajax_return($root);
}
//认证初始化
public function authent(){
$root = array();
if(!$GLOBALS['user_info']){
$root['error'] = "用户未登陆,请先登陆.";
$root['status'] = 0;
$root['user_login_status'] = 0;//有这个参数: user_login_status = 0 时,表示服务端未登陆、要求登陆,操作
}else{
$m_config = load_auto_cache("m_config");
$root['status'] = 1;
$root['error'] = "";
$root['title'] = $m_config['short_name']."认证";
$user_id = intval($GLOBALS['user_info']['id']);
$user_sql = "select id,id as user_id,investor_send_info,authentication_type,authentication_name,identify_number, contact,from_platform,wiki,identify_positive_image,identify_nagative_image,identify_hold_image,is_authentication from ".DB_PREFIX."user where is_effect =1 and id=".$user_id;
$user = $GLOBALS['db']->getRow($user_sql,true,true);
foreach($user as $k=>$v){
$user[$k] = htmlspecialchars_decode($v);
}
$user['identify_number'] = !empty($user['identify_number'])?$user['identify_number']:'';
$authent_list_sql = "select id,`name` from ".DB_PREFIX."authent_list order by sort desc";
$authent_list = $GLOBALS['db']->getAll($authent_list_sql,true,true);
$root['user'] = $user;
$root['authent_list'] = $authent_list;
$root['investor_send_info'] = $user['investor_send_info'];
}
ajax_return($root);
}
//提交认证
public function attestation(){
$root = array();
if(!$GLOBALS['user_info']){
$root['error'] = "用户未登陆,请先登陆.";
$root['status'] = 0;
$root['user_login_status'] = 0;//有这个参数: user_login_status = 0 时,表示服务端未登陆、要求登陆,操作
}else{
$root['status'] = 1;
$root['error'] = "";
fanwe_require(APP_ROOT_PATH.'system/libs/user.php');
$authentication_type = strim($_REQUEST['authentication_type']);//认证类型
$authentication_name = trim($_REQUEST['authentication_name']) ;//真实姓名
$identify_number = strim($_REQUEST['identify_number']) ;//身份证号码
$contact = trim($_REQUEST['contact']);//联系方式
//$from_platform = '';//来自平台
$wiki =trim($_REQUEST['wiki']); //百度百科
$identify_hold_image=strim($_REQUEST['identify_hold_image']);//手持身份证正面
$identify_positive_image=strim($_REQUEST['identify_positive_image']);//身份证正面
$identify_nagative_image=strim($_REQUEST['identify_nagative_image']);//身份证反面
//=============================
if($authentication_type==''){
$root['status'] = 0;
$root['error'] = '请选择认证类型!';
ajax_return($root);
}
if($authentication_name==''){
$root['status'] = 0;
$root['error'] = '请填写真实姓名!';
ajax_return($root);
}
if($identify_number==''){
$root['status'] = 0;
$root['error'] = '请输入真实身份证号码!';
ajax_return($root);
}
if($contact==''){
$root['status'] = 0;
$root['error'] = '请填写联系方式!';
ajax_return($root);
}
/*if($from_platform==''){
$root['status'] = 0;
$root['error'] = '请填写来自平台!';
ajax_return($root);
}*/
if($identify_positive_image==''){
$root['status'] = 0;
$root['error'] = '请上传身份证正面照片!';
ajax_return($root);
}
if($identify_nagative_image==''){
$root['status'] = 0;
$root['error'] = '请上传身份证背面照片!';
ajax_return($root);
}
if($identify_hold_image==''){
$root['status'] = 0;
$root['error'] = '请上传手持身份证正面!';
ajax_return($root);
}
if (!preg_match('/^([\xe4-\xe9][\x80-\xbf]{2}){2,4}$/', $authentication_name)) {
$root['status'] = 0;
$root['error'] = '请填写2-4位中文姓名!';
ajax_return($root);
}
if (!check_mobile($contact)) {
$root['status'] = 0;
$root['error'] = '请填写11位手机号!';
ajax_return($root);
}
//判断该实名是否存在
$user_info=$GLOBALS['db']->getRow("select id from ".DB_PREFIX."user where id=".$GLOBALS['user_info']['id']);
if($user_info){
$user_info['is_authentication'] = 1;//认证状态 0指未认证 1指待审核 2指认证 3指审核不通过
$user_info['user_type'] = 0;//用户类型
$user_info['authentication_type'] = $authentication_type;//认证类型
$user_info['authentication_name'] = $authentication_name;//真实姓名
$user_info['identify_number'] = $identify_number;//身份证号码
$user_info['contact'] = $contact;//联系方式
//$user_info['from_platform'] = $from_platform;//来自平台
$user_info['wiki'] =$wiki; //百度百科
$user_info['identify_hold_image']=get_spec_image($identify_hold_image);//手持身份证正面
$user_info['identify_positive_image']=get_spec_image($identify_positive_image);//身份证正面
$user_info['identify_nagative_image']=get_spec_image($identify_nagative_image);//身份证反面
$res = save_user($user_info,"UPDATE");
if($res['status']==1){
//更新session
$user_info = $GLOBALS['db']->getRow("select * from ".DB_PREFIX."user where id =".$res['data']);
es_session::set("user_info", $user_info);
$root['status'] = 1;
$root['error'] = '已提交,等待审核';
}else{
$root['status'] = 0;
$root['error'] = $res['error'];
}
}else{
$root['status'] = 0;
$root['error'] = '会员信息不存在';
}
}
ajax_return($root);
}
//提现领取记录
public function extract_record(){
$root = array();
if(!$GLOBALS['user_info']){
$root['error'] = "用户未登陆,请先登陆.";
$root['status'] = 0;
$root['user_login_status'] = 0;//有这个参数: user_login_status = 0 时,表示服务端未登陆、要求登陆,操作
}else{
$page = intval($_REQUEST['page'])?intval($_REQUEST['page']):1;
$page_size= 20;
$limit = (($page-1) * $page_size) . "," . $page_size;
$user_id = $GLOBALS['user_info']['id'];
$sql ="select money,pay_time,create_time,is_pay from ".DB_PREFIX."user_refund where is_pay in (1,3) and user_id =".$user_id ." limit $limit" ;
$list = $GLOBALS['db']->getAll($sql,true,true);
$totle_money = 0;
if($list){
foreach($list as $k=>$v){
if($v['is_pay']==3){
$totle_money += $v['money']*100;
}
$record[$k]['money'] = number_format($v['money'] ,2);
if($v['pay_time']!=0){
$record[$k]['pay_time'] =date("Y年m月d日",$v['pay_time']);
}
$record[$k]['is_pay'] =intval($v['is_pay']);
$record[$k]['create_time'] =date("Y年m月d日",$v['create_time']);
}
}else{
$record = array();
}
if(count($list)==$page_size){
$root['has_next'] = 1;
}else{
$root['has_next'] = 0;
}
$root['page'] = $page;
$root['total_money'] = number_format(intval($totle_money)/100,2);
$root['status'] = 1;
$root['error'] = '';//提现记录
$root['list'] = $record;
}
ajax_return($root);
}
//更新微信openid
public function update_wxopenid(){
$root = array();
if(!$GLOBALS['user_info']){
$root['error'] = "用户未登陆,请先登陆.";
$root['status'] = 0;
$root['user_login_status'] = 0;//有这个参数: user_login_status = 0 时,表示服务端未登陆、要求登陆,操作
}else{
$user_id = intval($GLOBALS['user_info']['id']);
fanwe_require(APP_ROOT_PATH."system/utils/weixin.php");
$m_config = load_auto_cache("m_config");//初始化手机端配置
//获取微信配置信息
if($m_config['wx_appid']==''||$m_config['wx_secrit']==''){
$root['status'] = 0;
$root['error'] = "微信提现参数未配置,请联系客服";
ajax_return($root);
}else{
$wx_appid = strim($m_config['wx_appid']);
$wx_secrit = strim($m_config['wx_secrit']);
}
$jump_url = SITE_DOMAIN.url_wap("user_center#update_wxopenid");
$weixin=new weixin($wx_appid,$wx_secrit,$jump_url);
if($_REQUEST['code']!=""){
$wx_info=$weixin->scope_get_userinfo($_REQUEST['code']);
fanwe_require(APP_ROOT_PATH."system/libs/user.php");
$root = wxUser_update($wx_info,$user_id);
}else{
$root['status'] = 0;
$root['error'] = "绑定微信信息失败";
}
}
ajax_return($root);
}
//支付宝提现绑定接口
public function binding_alipay(){
$root = array();
if(!$GLOBALS['user_info']){
$root['error'] = "用户未登陆,请先登陆.";
$root['status'] = 0;
$root['user_login_status'] = 0;//有这个参数: user_login_status = 0 时,表示服务端未登陆、要求登陆,操作
}else{
$user_id = $GLOBALS['user_info']['id'];
$alipay_name = trim($_REQUEST['alipay_name']);
$alipay_account = trim($_REQUEST['alipay_account']);
if ($alipay_name != '' && $alipay_account != ''){
$alipay = array();
$alipay['alipay_name'] = strim($alipay_name);
$alipay['alipay_account'] = strim($alipay_account);
$alipay['binding_alipay'] = 1;
$where = "id=".$user_id;
$result = $GLOBALS['db']->autoExecute(DB_PREFIX."user",$alipay,"UPDATE",$where);
if (!$result){
$root['error'] = "绑定失败";
$root['status'] = 0;
}else{
fanwe_require(APP_ROOT_PATH.'mapi/lib/redis/UserRedisService.php');
$user_redis = new UserRedisService();
$user_ticket_info = $user_redis->update_db($user_id,$alipay);
$root['error'] = '绑定成功';
$root['status'] = 1;
}
}else{
$root['error'] = "支付宝账户与名称不能为空";
$root['status'] = 0;
}
}
ajax_return($root);
}
//支付宝提现界面初始化接口
public function money_carry_alipay()
{
$root = array('status'=>1,'error'=>'初始化成功');
if(!$GLOBALS['user_info']){
$root['error'] = "用户未登陆,请先登陆.";
$root['status'] = 0;
$root['user_login_status'] = 0;//有这个参数: user_login_status = 0 时,表示服务端未登陆、要求登陆,操作
}else{
$m_config = load_auto_cache("m_config");//初始化手机端配置
$user_id = intval($GLOBALS['user_info']['id']);
fanwe_require(APP_ROOT_PATH.'mapi/lib/redis/UserRedisService.php');
$user_redis = new UserRedisService();
$ticket = $user_redis->getRow_db($user_id,array('ticket','refund_ticket','weibo_money','weibo_refund_money','alipay_name','alipay_account'));
$root['weibo_money'] = floatval($ticket['weibo_money']);
$root['alipay_name'] = $ticket['alipay_name'];
$root['alipay_account'] = $ticket['alipay_account'];
$root['ratio'] = $m_config['weibo_catty_ratio'];//提现比例
$root['can_use_money'] =intval($ticket['weibo_money']-$ticket['weibo_refund_money']);//可提现印票
if (floatval($m_config['weibo_catty_ratio']) > 0){
//每日可提现印票
$root['day_ticket_max'] = intval(intval($m_config['day_cash_max'])/floatval($m_config['weibo_catty_ratio']));
//最小提现印票
$root['ticket_catty_min'] = intval(intval($m_config['ticket_catty_min'])/floatval($m_config['weibo_catty_ratio']));
}
//计算已提现印票
$user_refund = $GLOBALS['db']->getRow("SELECT SUM(weibo_money) AS refund_sum FROM ".DB_PREFIX.
"user_refund WHERE user_id=".$user_id." AND is_pay=3 AND type =1");
$root['ready_refund_weibo_money'] = intval($user_refund['refund_sum']);
}
api_ajax_return($root);
}
//支付宝提现接口
public function submit_refund_alipay()
{
$root = array('status' => 1, 'error' => '成功');
if (!$GLOBALS['user_info']) {
$root['error'] = "用户未登陆,请先登陆.";
$root['status'] = 0;
$root['user_login_status'] = 0;//有这个参数: user_login_status = 0 时,表示服务端未登陆、要求登陆,操作
} else {
$m_config = load_auto_cache("m_config");//初始化手机端配置
$user_id = $GLOBALS['user_info']['id'];//会员ID
$rate = $m_config['weibo_catty_ratio'];//提现比例
$weibo_money = intval($_REQUEST['weibo_money']);//提现印票
$memo = "支付宝提现";
$money = floatval($weibo_money * $rate);
//未处理提现
$ready_refund_id = intval($GLOBALS['db']->getOne("select id from " . DB_PREFIX . "user_refund where user_id = " . intval($user_id) . " and (is_pay =0 or is_pay=1) and type =1"));
if ($ready_refund_id) {
$root['error'] = '您还有未处理的提现!';
$root['status'] = 0;
api_ajax_return($root);
}
//会员当前印票
$user_weibo_money_info = $GLOBALS['db']->getRow("select weibo_refund_money ,weibo_money from ".DB_PREFIX."user where id = '".intval($user_id)."'");
$user_weibo_money = $user_weibo_money_info['weibo_money'] - $user_weibo_money_info['weibo_refund_money'];//可使用的印票
//超额判断
if ($weibo_money > $user_weibo_money) {
$root['error'] = '提现超出限制!不能大于可用提现';
$root['status'] = 0;
api_ajax_return($root);
}
// 进入每月提现一次流程
$month_carry_one = intval($m_config['month_carry_one']) ? 1 : 0;//提现配置,1:每月提现1次,0:无限制
if ($month_carry_one) {
$ready_refund_info = $GLOBALS['db']->getRow("select pay_time from " . DB_PREFIX . "user_refund where user_id = " . intval($user_id) . " and is_pay = 3");
$pay_time = $ready_refund_info['pay_time'];
//本月是否有提现
if ($pay_time != '' && (to_date($pay_time, "Ym") == to_date(get_gmtime(), 'Ym'))) {
$root['error'] = '每月只能提现一次,本月已经提现过了';
$root['status'] = 0;
api_ajax_return($root);
} else {
//查看本月允许提现时间
if ((to_date(get_gmtime(), 'm') > intval($m_config['month_carry_max']) || to_date(get_gmtime(), 'm') < intval($m_config['month_carry_min']))&&intval($m_config['month_carry_max'])!=0&&intval($m_config['month_carry_min'])!=0){
$root['error'] = '每月' . intval($m_config['month_carry_min']) . '日到' . intval($m_config['month_carry_max']) . '日才能提现';
$root['status'] = 0;
api_ajax_return($root);
}
}
}
//如果开启了公会,公会长的提现比例需修改;禁止公会长提现
if(OPEN_SOCIETY_MODULE == 1){
$society_info = $GLOBALS['db']->getRow("select society_id,society_chieftain from ".DB_PREFIX."user where id=".$user_id);
if(intval($society_info['society_chieftain']) == 1){
$root['error'] ='会长提现,请联系客服!';
$root['status'] = 0;
api_ajax_return($root);
}elseif(intval($society_info['society_id'])) {
$root['error'] ='公会成员不允许提现!';
$root['status'] = 0;
api_ajax_return($root);
}
/*if (intval($society_info['society_chieftain'])){
$refund_rate = $GLOBALS['db']->getOne("select refund_rate from ".DB_PREFIX."society where id=".$society_info['society_id']);
$rate = floatval($refund_rate);
if ($rate > 1 || $rate <= 0){
$rate = $m_config['society_public_rate'];
}
}*/
}
//提现最小值
$ticket_catty_min = $m_config['ticket_catty_min'] > 1 ? $m_config['ticket_catty_min'] : 1;
//最小判断
if ($money < $ticket_catty_min) {
$root['error'] = '支付宝提现单笔不能少于' . $ticket_catty_min . '元';
$root['status'] = 0;
api_ajax_return($root);
}
//取用户当日提现金额之和
//create_time储存的是格林威治时间。使用时需转换为北京时间
$refunded_money_sql = "select sum(money) from ".DB_PREFIX."user_refund where user_id=$user_id and (is_pay=0 or is_pay=1 or is_pay=3)
and DATE_FORMAT(FROM_UNIXTIME(create_time+28800),'%Y-%m-%d')=DATE_FORMAT(NOW(),'%Y-%m-%d')";
$refunded_money = $GLOBALS['db']->getOne($refunded_money_sql);
$total_money = floatval($refunded_money) + $money;
//提现最大值
$day_cash_max = intval($m_config['day_cash_max']);
//总和判断
if($total_money > $day_cash_max){
$root['error'] = '支付宝每日提现总额不能多于' . $day_cash_max . '元';
$root['status'] = 0;
api_ajax_return($root);
}
$refund_data['money'] = $money;
$refund_data['user_bank_id'] = -1;
$refund_data['weibo_money'] = $weibo_money;
$refund_data['user_id'] = $user_id;
$refund_data['create_time'] = NOW_TIME;
$refund_data['memo'] = $memo;
$refund_data['withdrawals_type'] = 1;
$refund_data['type'] = 1;
$GLOBALS['db']->autoExecute(DB_PREFIX . "user_refund", $refund_data);
}
api_ajax_return($root);
}
//竞拍收入明细
//$type 0 --已结算
//$type 1 --待结算
public function income(){
// if (intval($_REQUEST['details'])==1) {
// $this->goods_income_details();
// }
$root=array();
$user_id = intval($GLOBALS['user_info']['id']);
if($user_id == 0){
$root['status']=10007;
$root['error']="请先登录";
api_ajax_return($root);
}
$year = intval($_REQUEST['year']);
$month = intval($_REQUEST['month']);
$type = intval($_REQUEST['type']);
$is_pai = intval($_REQUEST['is_pai']);
$time=NOW_TIME;
$end_year=to_date($time,'Y');
$end_month=to_date($time,'m');
if ($year==0) {
$year=$end_year;
$month=$end_month;
}
$rs = FanweServiceCall("user_center","pai_income_details",array("user_id"=>$user_id,"year"=>$year,"month"=>$month,"type"=>$type,"is_pai"=>$is_pai));
if($rs['status'] == 1){
$root['type'] = $type;
$root['status'] = $rs['status'];
$root['ticket'] = $rs['cumulative'];
$root['pending'] = $rs['settlement'];
$root['now_year'] = $year;
$root['now_month'] = $month;
$root['end_year'] = intval($end_year);
$root['end_month'] = intval($end_month);
$root['list'] = $rs['details'];
$root['page'] = array('page'=>1,'has_next'=>0);
}
api_ajax_return($root);
}
//商品收入明细
//$type 1 --已结算
//$type 2 --待结算
//$tupe 3 --无效
public function goods_income_details(){
$root =array();
$user_id = intval($GLOBALS['user_info']['id']);
if($user_id == 0){
$root['status']=10007;
$root['error']="请先登录";
api_ajax_return($root);
}
$page = intval($_REQUEST['page']);
$page_size = 20;
$time = NOW_TIME;
$year = intval($_REQUEST['year']);
$month = intval($_REQUEST['month']);
$type = intval($_REQUEST['type']);
$end_year=to_date($time,'Y');
$end_month=to_date($time,'m');
if ($year==0) {
$year=$end_year;
$month=$end_month;
}
fanwe_require(APP_ROOT_PATH . 'mapi/shop/pai_podcast.action.php');
$pai_podcast = new pai_podcastCModule();
$rs = $pai_podcast->commodity_profitlist($page,$page_size,$time,$year,$month,$type);
if($rs['status'] == 1){
if($rs['OrderIncome']['totalAccount'] == ''){
$rs['OrderIncome']['totalAccount']=0;
}
if($rs['OrderIncome']['waitAccount'] == ''){
$rs['OrderIncome']['waitAccount']=0;
}
if($rs['ProfitOrder'] == ''){
$rs['ProfitOrder']=array();
}
$root['type'] = $type;
$root['status'] = $rs['status'];
$root['ticket'] = $rs['OrderIncome']['totalAccount'];
$root['pending'] = $rs['OrderIncome']['waitAccount'];
$root['now_year'] = $year;
$root['now_month'] = $month;
$root['end_year'] = intval($end_year);
$root['end_month'] = intval($end_month);
$root['list'] = $rs['ProfitOrder'];
$root['page'] = array('page'=>1,'has_next'=>0);
}
api_ajax_return($root);
}
/*
* 支付宝认证
*/
public function authent_alipay(){
$m_config = load_auto_cache("m_config");//初始化手机端配置
$user_id = intval($GLOBALS['user_info']['id']);
$request = $_REQUEST;
if($user_id == 0){
$root['status']=10007;
$root['error']="请先登录";
ajax_return($root);
}else{
$m_config = load_auto_cache("m_config");//初始化手机端配置
$aliConnect = new aliConnectAPI($m_config['alipay_partner'],$m_config['alipay_key']);
if(intval($GLOBALS['db']->getOne("select id from fanwe_user where v_type=3 and id=".$user_id." and alipay_authent_token <>''")))
{
$root['status'] = 0;
$root['error']='用户支付宝已认证';
echo $aliConnect ->build_html($root['error']); die;
}
if(strim($request['is_success'])=='T'){
//支付宝用户号
$alipay_user_id = intval($request['user_id']);
//授权令牌
$token = strim($request['token']);
//真实姓名
$real_name = strim($_REQUEST['real_name']);
require_once(APP_ROOT_PATH."system/libs/user.php");
$user_data = array();
$user_data['id'] = $user_id;
$user_data['alipay_user_id'] = $alipay_user_id;
$user_data['alipay_name'] = $real_name;
$user_data['alipay_authent_token'] = $token;
$user_data['v_type'] = 3;
$root = AuthentAlipayUser($user_data);
echo $aliConnect ->buildRequestForm($root['error']); die;
}
if((!defined('OPEN_AUTHENT_ALIPAY')||OPEN_AUTHENT_ALIPAY==0)&&intval($m_config['authent_alipay'])==0){
$root['status']=0;
$root['error']="支付宝一键认证未开启";
ajax_return($root);
}else{
$aliConnect ->get_display_code();
}
}
}
/*
* 更新推荐人字段
*/
public function update_p_user_id(){
$root = array('status' => 1,'error'=>'');
$user_id = intval($GLOBALS['user_info']['id']);
$request = $_REQUEST;
if($user_id == 0){
$root['status']=10007;
$root['error']="请先登录";
ajax_return($root);
}
if (intval($GLOBALS['user_info']['p_user_id'])>0) {
$root['error'] = "推荐人已存在!";
$root['status'] = 0;
ajax_return($root);
}
$p_user_id = intval($_REQUEST['p_user_id']);
$p_user_id = $GLOBALS['db']->getOne("select id from " . DB_PREFIX . "user where id =" . $p_user_id);
if(intval($p_user_id)==0){
$root['error'] = "推荐人不存在!";
$root['status'] = 0;
ajax_return($root);
}
$data = array(
'p_user_id' =>$p_user_id,
);
$GLOBALS['db']->autoExecute(DB_PREFIX."user",$data,"UPDATE", "id=".$user_id);
fanwe_require(APP_ROOT_PATH . 'mapi/lib/redis/UserRedisService.php');
$user_redis = new UserRedisService();
$user_redis->update_db($user_id,$data);
//更新session
$user_info = $GLOBALS['db']->getRow("select * from " . DB_PREFIX . "user where id =" . $user_id);
es_session::set("user_info", $user_info);
api_ajax_return($root);
}
/*
* 获取推荐人字段
*/
public function get_p_user_id(){
$root = array('status' => 1,'error'=>'');
$user_id = intval($GLOBALS['user_info']['id']);
$request = $_REQUEST;
if($user_id == 0){
$root['status']=10007;
$root['error']="请先登录";
ajax_return($root);
}
$root['p_user_id'] = intval($GLOBALS['user_info']['p_user_id']);
api_ajax_return($root);
}
public function cont(){
$root = array();
$user_id = intval($_REQUEST['to_user_id']);
if(!$user_id){
if(!$GLOBALS['user_info']){
$root['error'] = "用户未登陆,请先登陆.";
$root['status'] = 0;
$root['user_login_status'] = 0;//有这个参数: user_login_status = 0 时,表示服务端未登陆、要求登陆,操作
api_ajax_return($root);
}
$user_id = intval($GLOBALS['user_info']['id']);//被查看的用户id
}
$user = $GLOBALS['db']->getRow("select * from ".DB_PREFIX."user where id = ".$user_id);
if(!$user){
$root['error'] = "用户不存在.";
$root['status'] = 0;
api_ajax_return($root);
}
$page = intval($_REQUEST['p']);//取第几页数据
if($page==0){
$page_size = "50";
}else{
$page_size=30;
//$limit = (($page-1)*$page_size).",".$page_size;
}
fanwe_require(APP_ROOT_PATH.'mapi/xr/redis/WeiboContributionRedisService.php');
$weiboCont_redis = new WeiboContributionRedisService();
$root = $weiboCont_redis->get_podcast_contribute($user_id,$page,$page_size);
$root['total_num'] = intval(floor($root['user']['ticket']));
api_ajax_return($root);
}
public function user_levels(){
$user_level = $GLOBALS['db']->getAll("select * from ".DB_PREFIX."user_level order by level ASC limit 0,6");
$root['status']=1;
$root['error']="";
foreach($user_level as $k=>$v){
if($v['icon']){
$user_level[$k]['icon'] = get_spec_image($v['icon']);
}
}
$root['list'] = $user_level;
api_ajax_return($root);
}
}
?>