You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
620 B
18 lines
620 B
<?php
|
|
defined('IN_IA') or exit('Access Denied');
|
|
|
|
class Fightset_WeliamController {
|
|
|
|
function fightgroupset() {
|
|
global $_W, $_GPC;
|
|
if (checksubmit('submit')) {
|
|
$set = $_GPC['set'];
|
|
Setting::agentsetting_save($set, 'fightgroup');
|
|
wl_message('保存设置成功!', referer(), 'success');
|
|
}
|
|
$set = Setting::agentsetting_read('fightgroup');
|
|
$communitylist = pdo_getall('wlmerchant_community', array('uniacid' => $_W['uniacid'], 'aid' => $_W['aid']), array('id', 'communname'));
|
|
|
|
include wl_template('fightset/fightgroupset');
|
|
}
|
|
}
|
|
|