1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01:00
php-e107/e107_handlers/forum_mod.php
2006-12-02 04:36:16 +00:00

101 lines
3.1 KiB
PHP

<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| ©Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_handlers/forum_mod.php,v $
| $Revision: 1.1.1.1 $
| $Date: 2006-12-02 04:33:45 $
| $Author: mcfly_e107 $
+----------------------------------------------------------------------------+
*/
if (!defined('e107_INIT')) { exit; }
function forum_thread_moderate($p) {
global $sql;
foreach($p as $key => $val) {
if (preg_match("#(.*?)_(\d+)_x#", $key, $matches)) {
$act = $matches[1];
$id = $matches[2];
switch($act) {
case 'lock' :
$sql->db_Update("forum_t", "thread_active='0' WHERE thread_id='".intval($id)."' ");
return FORLAN_CLOSE;
break;
case 'unlock' :
$sql->db_Update("forum_t", "thread_active='1' WHERE thread_id='".intval($id)."' ");
return FORLAN_OPEN;
break;
case 'stick' :
$sql->db_Update("forum_t", "thread_s='1' WHERE thread_id='".intval($id)."' ");
return FORLAN_STICK;
break;
case 'unstick' :
$sql->db_Update("forum_t", "thread_s='0' WHERE thread_id='".intval($id)."' ");
return FORLAN_UNSTICK;
break;
case 'delete' :
return forum_delete_thread($id);
break;
}
}
}
}
function forum_delete_thread($thread_id) {
global $sql;
$sql->db_Select("forum_t", "*", "thread_id='".intval($thread_id)."' ");
$row = $sql->db_Fetch();
extract($row);
if ($thread_parent) {
// is post a reply?
$sql->db_Delete("forum_t", "thread_id = '".intval($thread_id)."' ");
// delete reply only
$sql->db_Update("forum", "forum_replies=forum_replies-1 WHERE forum_id='{$thread_forum_id}'");
// dec reply count by 1
$sql->db_Select("forum_t", "*", "thread_id = ".intval($thread_id));
$row = $sql->db_Fetch();
extract($row);
$replies = $sql->db_Count("forum_t", "(*)", "WHERE thread_parent='".$thread_parent."'");
$pref['forum_postspage'] = ($pref['forum_postspage'] ? $pref['forum_postspage'] : 10);
$pages = 0;
if ($replies) {
$pages = ((ceil($replies / $pref['forum_postspage']) -1) * $pref['forum_postspage']);
}
$url = e_BASE."forum_viewtopic.php?".$forum_id.".".$thread_parent.($pages ? ".$pages" : "");
// set return url
return FORLAN_26;
} else {
// post is thread
$sql->db_Delete("poll", "poll_datestamp='".intval($thread_id)."'");
// delete poll if there is one
$count = $sql->db_Delete("forum_t", "thread_parent='".intval($thread_id)."'");
// delete replies and grab how many there were
$sql->db_Delete("forum_t", "thread_id='".intval($thread_id)."'");
// delete the post itself
$sql->db_Update("forum", "forum_threads=forum_threads-1, forum_replies = forum_replies - {$count} WHERE forum_id = '{$thread_forum_id}'");
// update thread/reply counts
$url = e_BASE."forum_viewforum.php?".$forum_id;
// set return url
return FORLAN_6.($count ? ", ".$count." ".FORLAN_7."." : ".");
}
}