spacecp_common.php
2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: spacecp_common.php 24550 2011-09-26 02:58:48Z chenmengshu $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
$op = empty($_GET['op'])?'':trim($_GET['op']);
if($op == 'ignore') {
$type = empty($_GET['type'])?'':preg_replace("/[^0-9a-zA-Z\_\-\.]/", '', $_GET['type']);
if(submitcheck('ignoresubmit')) {
$authorid = empty($_POST['authorid']) ? 0 : intval($_POST['authorid']);
if($type) {
$type_uid = $type.'|'.$authorid;
if(empty($space['privacy']['filter_note']) || !is_array($space['privacy']['filter_note'])) {
$space['privacy']['filter_note'] = array();
}
$space['privacy']['filter_note'][$type_uid] = $type_uid;
privacy_update();
}
showmessage('do_success', dreferer(), array(), array('showdialog'=>1, 'showmsg' => true, 'closetime' => true));
}
$formid = random(8);
} elseif($op == 'getuserapp') {
getuserapp();
if(empty($_GET['subop'])) {
$my_userapp = array();
foreach($_G['my_userapp'] as $value) {
if($value['allowsidenav'] && !isset($_G['cache']['userapp'][$value['appid']])) {
$my_userapp[] = $value;
}
}
} else {
$my_userapp = $_G['my_menu'];
}
} elseif($op == 'closefeedbox') {
dsetcookie('closefeedbox', 1);
} elseif($op == 'modifyunitprice') {
$showinfo = C::t('home_show')->fetch($_G['uid']); //DB::fetch_first("SELECT credit, unitprice FROM ".DB::table('home_show')." WHERE uid='$_G[uid]'");
if(submitcheck('modifysubmit')) {
$unitprice = intval($_POST['unitprice']);
if($unitprice < 1) {
showmessage('showcredit_error', '', array(), array('return' => 1));
}
$unitprice = $unitprice > $showinfo['credit'] ? $showinfo['credit'] : $unitprice;
C::t('home_show')->update($_G['uid'], array('unitprice' => $unitprice));
showmessage('do_success', dreferer(), array('unitprice' => $unitprice), array('showdialog'=>1, 'showmsg' => true, 'closetime' => true));
}
}
include template('home/spacecp_common');
?>