Esempio n. 1
0
 public function receive()
 {
     $type = $this->message['type'];
     //这里定义此模块进行消息订阅时的, 消息到达以后的具体处理过程, 请查看微赞文档来编写你的代码
     //出发套餐回收
     common_group_check();
 }
Esempio n. 2
0
<?php

/**
 * 会员财务中心
 *
 * 作者:Kim
 * 模块定制QQ: 800083075
 * 后台体验地址: http://www.012wz.com
 */
defined('IN_IA') or exit('Access Denied');
global $_W, $_GPC;
if (!$_W['isfounder']) {
    message('不能访问, 需要创始人权限才能访问.');
}
$ops = array("auto");
$op = in_array($_GPC["op"], $ops) ? $_GPC["op"] : "display";
if ($_W["ispost"] && $_W["isajax"]) {
    if ($op == "auto") {
        die(json_encode(common_group_check()));
    }
}
include $this->template('financial_test');