forumdisplay.php
2.2 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: forumdisplay.php 34236 2013-11-21 01:13:12Z nemohou $
*/
if(!defined('IN_MOBILE_API')) {
exit('Access Denied');
}
define('MOBILE_HIDE_STICKY', !isset($_GET['hidesticky']) ? 1 : $_GET['hidesticky']);
$_GET['mod'] = 'forumdisplay';
include_once 'forum.php';
class mobile_api {
function common() {
global $_G;
if(!empty($_GET['pw'])) {
$_GET['action'] = 'pwverify';
}
$_G['forum']['allowglobalstick'] = false;
}
function output() {
global $_G;
foreach($_G['forum_threadlist'] as $k => $thread) {
$_G['forum_threadlist'][$k]['tid'] = $thread['icontid'];
if($thread['displayorder'] > 0) {
unset($_G['forum_threadlist'][$k]);
continue;
}
$_G['forum_threadlist'][$k]['cover'] = array();
if($thread['cover']) {
$_img = @getimagesize($thread['coverpath']);
if($_img) {
$_G['forum_threadlist'][$k]['cover'] = array('w' => $_img[0], 'h' => $_img[1]);
}
}
}
$variable = array(
'forum' => mobile_core::getvalues($_G['forum'], array('fid', 'fup', 'name', 'threads', 'posts', 'rules', 'autoclose', 'password')),
'group' => mobile_core::getvalues($_G['group'], array('groupid', 'grouptitle')),
'forum_threadlist' => mobile_core::getvalues(array_values($_G['forum_threadlist']), array('/^\d+$/'), array('tid', 'author', 'authorid', 'subject', 'subject', 'dbdateline', 'dateline', 'dblastpost', 'lastpost', 'lastposter', 'attachment', 'replies', 'readperm', 'views', 'digest', 'cover')),
'sublist' => mobile_core::getvalues($GLOBALS['sublist'], array('/^\d+$/'), array('fid', 'name', 'threads', 'todayposts', 'posts')),
'tpp' => $_G['tpp'],
'page' => $GLOBALS['page'],
);
if(!empty($_G['forum']['threadtypes']) || !empty($_GET['debug'])) {
$variable['threadtypes'] = $_G['forum']['threadtypes'];
}
if(!empty($_G['forum']['threadsorts']) || !empty($_GET['debug'])) {
$variable['threadsorts'] = $_G['forum']['threadsorts'];
}
$variable['forum']['password'] = $variable['forum']['password'] ? '1' : '0';
mobile_core::result(mobile_core::variable($variable));
}
}
?>