myfavforum.php
1.16 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
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: myfavforum.php 34236 2013-11-21 01:13:12Z nemohou $
*/
if(!defined('IN_MOBILE_API')) {
exit('Access Denied');
}
$_GET['mod'] = 'space';
$_GET['do'] = 'favorite';
$_GET['type'] = 'forum';
include_once 'home.php';
class mobile_api {
function common() {
}
function output() {
global $_G;
$fids = array();
foreach($GLOBALS['list'] as $_k => $_v) {
$fids[$_v['id']] = $_k;
}
if($fids) {
$favforumlist = C::t('forum_forum')->fetch_all(array_keys($fids));
foreach($favforumlist as $_fid => $_v) {
$GLOBALS['list'][$fids[$_fid]]['threads'] = $_v['threads'];
$GLOBALS['list'][$fids[$_fid]]['posts'] = $_v['posts'];
$GLOBALS['list'][$fids[$_fid]]['todayposts'] = $_v['todayposts'];
$GLOBALS['list'][$fids[$_fid]]['yesterdayposts'] = $_v['yesterdayposts'];
}
}
$variable = array(
'list' => array_values($GLOBALS['list']),
'perpage' => $GLOBALS['perpage'],
'count' => $GLOBALS['count'],
);
mobile_core::result(mobile_core::variable($variable));
}
}
?>