49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?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));
|
|
}
|
|
|
|
}
|
|
|
|
?>
|