18 $this->_admin =
$f->isAdmin ();
28 if (!$this->_admin || 0 !== strcasecmp($_SERVER[
'REQUEST_METHOD'],
'POST'))
29 return '<ret>0</ret>';
32 return $db->deleteCategoryAll ((
int)$cat_id) ?
'<ret>1</ret>' :
'<ret>0</ret>';
42 if (!$this->_admin || 0 !== strcasecmp($_SERVER[
'REQUEST_METHOD'],
'POST'))
43 return '<ret>0</ret>';
47 $cat =
$db->getCatByForumId($forum_id);
49 if (
$db->deleteForumAll ((
int)$forum_id))
50 return '<root><cat_uri>' . $cat[
'cat_uri'] .
'</cat_uri><cat_id>' . $cat[
'cat_id'] .
'</cat_id></root>';
52 return '<root><cat_id>0</cat_id></root>';
63 $a =
$db->getCat ((
int)$cat_id);
72 <cat cat_id=
"$cat_id">
73 <cat_name>{$a[
'cat_name']}</cat_name>
74 <cat_order>{$a[
'cat_order']}</cat_order>
75 <cat_expanded>{$a[
'cat_expanded']}</cat_expanded>
89 if (!$this->_admin || 0 !== strcasecmp($_SERVER[
'REQUEST_METHOD'],
'POST'))
90 return '<ret>0</ret>';
98 $cat_name =
$db->unescape($cat_name);
100 return $db->editCategory ((
int)$cat_id, $cat_name, (
int)$cat_order, $cat_expanded ? 1 : 0) ?
'<ret>1</ret>' :
'<ret>0</ret>';
104 return $db->insertCategory ($cat_name, $cat_uri, (
int)$cat_order, $cat_expanded ? 1 : 0) ?
'<ret>1</ret>' :
'<ret>0</ret>';
120 $a =
$db->getForum ((
int)$forum_id);
122 $a[
'cat_id'] = $cat_id;
124 $c = $fdb->getCat ($a[
'cat_id']);
125 $a[
'cat_uri'] = $c[
'cat_uri'];
135 <forum forum_id=
"$forum_id">
136 <cat_id>{$a[
'cat_id']}</cat_id>
137 <cat_uri>{$a[
'cat_uri']}</cat_uri>
138 <title>{$a[
'forum_title']}</title>
139 <desc>{$a[
'forum_desc']}</desc>
158 if (!$this->_admin || 0 !== strcasecmp($_SERVER[
'REQUEST_METHOD'],
'POST'))
159 return '<ret>0</ret>';
170 $title =
$db->unescape($title);
171 $desc =
$db->unescape($desc);
174 return $db->editForum ((
int)$forum_id, $title, $desc, $type, (
int)$order) ?
'<ret>1</ret>' :
'<ret>0</ret>';
177 $forum_uri =
$f->uriGenerate ($title,
TF_FORUM,
'forum_uri');
178 return $db->insertForum ((
int)$cat_id, $title, $desc, $type, $forum_uri, (
int)$order) ?
'<ret>1</ret>' :
'<ret>0</ret>';
188 return $this->
getXxxPostsXML ($wp,
'getHiddenPosts',
'[L[Hidden Posts]]');
196 return $this->
getXxxPostsXML ($wp,
'getReportedPosts',
'[L[Reported Posts]]',
'<allow_clear_report>1</allow_clear_report>');
209 if (!$this->_admin) {
212 $li =
$GLOBALS[
'f']->_getLoginInfo ($u);
215 return "<root><posts></posts></root>";
222 $gl_allow_hide_posts = 1;
223 $gl_allow_unhide_posts = 1;
224 $gl_allow_clear_report = 1;
225 $gl_allow_download = 1;
227 $u =
$f->_getLoginUser();
229 $a = $adb->$sDbFunc($u);
233 if (!isset($ui[$r[
'user']]) && ($aa =
$f->_getUserInfoReadyArray ($r[
'user'])))
234 $ui[$r[
'user']] = $aa;
236 $allow_edit = $gl_allow_edit;
237 $allow_del = $gl_allow_del;
239 $files =
$GLOBALS[
'f']->_getAttachmentsXML ($r[
'post_id']);
246 <
post id=
"{$r['post_id']}" force_show=
"1">
247 <text>{$r[
'post_text']}</text>
248 <when>{$r[
'when']}</when>
249 <allow_edit>$allow_edit</allow_edit>
250 <allow_del>$allow_del</allow_del>
251 <allow_hide_posts>$gl_allow_hide_posts</allow_hide_posts>
252 <allow_unhide_posts>$gl_allow_unhide_posts</allow_unhide_posts>
253 <allow_download>$gl_allow_download</allow_download>
255 <points>{$r[
'votes']}</points>
256 <hidden>{$r[
'hidden']}</hidden>
257 <vote_user_point>{$r[
'vote_user_point']}</vote_user_point>
258 <user posts=
"{$ui[$r['user']]['posts']}" name=
"{$r['user']}">
259 <avatar>{$ui[$r[
'user']][
'avatar']}</avatar>
260 <url>{$ui[$r[
'user']][
'url']}</url>
261 <title>{$ui[$r[
'user']][
'title']}</title>
262 <onclick>{$ui[$r[
'user']][
'onclick']}</onclick>
263 <role>{$ui[$r[
'user']][
'role']}</role>
265 <attachments>$files</attachments>
266 <min_point>{
$gConf[
'min_point']}</min_point>
275 $li =
$GLOBALS[
'f']->_getLoginInfo ($u);
276 return $this->
addHeaderFooter ($li,
"<posts><topic><title>$sTitle</title><id>0</id></topic><forum><id>0</id></forum>{$p}</posts>");
279 return "<root>$cu<posts><topic><title>$sTitle</title><id>0</id></topic><forum><id>0</id></forum>{$p}</posts></root>";
288 if (!$this->_admin || 0 !== strcasecmp($_SERVER[
'REQUEST_METHOD'],
'POST')) {
289 return '<ret>0</ret>';
292 require_once(
'./classes/ChLang.php' );
293 require_once(
$gConf[
'dir'][
'xml'].
'lang.php' );
295 $sLang = isset(
$_GET[
'lang']) && preg_match(
"/^[a-z]{2}$/",
$_GET[
'lang']) ?
$_GET[
'lang'] :
$gConf[
'lang'];
297 $l->setVisualProcessing(0);
299 return '<ret>1</ret>';
300 return '<ret>0</ret>';
305 if (!$post_id || !$this->_admin || 0 !== strcasecmp($_SERVER[
'REQUEST_METHOD'],
'POST'))
306 return '<ret>0</ret>';
309 if (!
$db->clearReport ((
int)$post_id))
310 return '<ret>0</ret>';
312 return '<ret>1</ret>';