1
0
mirror of https://github.com/e107inc/e107.git synced 2025-02-15 03:54:39 +01:00
php-e107/e107_plugins/forum/forum_mod.php

87 lines
2.0 KiB
PHP
Raw Normal View History

2006-12-02 04:36:16 +00:00
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| <EFBFBD>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_plugins/forum/forum_mod.php,v $
2008-12-18 18:32:54 +00:00
| $Revision: 1.6 $
| $Date: 2008-12-18 18:32:54 $
| $Author: mcfly_e107 $
2006-12-02 04:36:16 +00:00
+----------------------------------------------------------------------------+
*/
2008-12-18 18:32:54 +00:00
if (!defined('e107_INIT')) { exit; }
include_lan(e_PLUGIN.'forum/languages/English/lan_forum_admin.php');
2006-12-02 04:36:16 +00:00
function forum_thread_moderate($p)
{
// var_dump($_POST);
// return;
$e107 = e107::getInstance();
2006-12-02 04:36:16 +00:00
global $sql;
foreach ($p as $key => $val)
{
2006-12-02 04:36:16 +00:00
if (preg_match("#(.*?)_(\d+)_x#", $key, $matches))
{
$act = $matches[1];
2008-12-18 18:32:54 +00:00
// print_a($matches); return;
$id = (int)$matches[2];
switch ($act)
2006-12-02 04:36:16 +00:00
{
case 'lock':
2008-12-18 18:32:54 +00:00
$e107->sql->db_Update('forum_thread', 'thread_active=0 WHERE thread_id='.$id);
return FORLAN_CLOSE;
break;
case 'unlock':
2008-12-18 18:32:54 +00:00
$e107->sql->db_Update('forum_thread', 'thread_active=1 WHERE thread_id='.$id);
return FORLAN_OPEN;
break;
case 'stick':
2008-12-18 18:32:54 +00:00
$e107->sql->db_Update('forum_thread', 'thread_sticky=1 WHERE thread_id='.$id);
return FORLAN_STICK;
break;
case 'unstick':
2008-12-18 18:32:54 +00:00
$e107->sql->db_Update('forum_thread', 'thread_sticky=0 WHERE thread_id='.$id);
return FORLAN_UNSTICK;
break;
case 'deleteThread':
2008-12-18 18:32:54 +00:00
return forumDeleteThread($id);
break;
2008-12-11 16:02:05 +00:00
case 'deletePost':
2008-12-18 18:32:54 +00:00
return forumDeletePost($id);
break;
2008-12-11 16:02:05 +00:00
2006-12-02 04:36:16 +00:00
}
}
}
}
function forumDeleteThread($threadId)
2006-12-02 04:36:16 +00:00
{
require_once (e_PLUGIN.'forum/forum_class.php');
$f = &new e107forum;
2008-12-18 18:32:54 +00:00
$ret = $f->threadDelete($threadId);
return FORLAN_6.' and '.$ret.' '.FORLAN_7.'.';
2006-12-02 04:36:16 +00:00
}
2008-12-11 16:02:05 +00:00
function forumDeletePost($postId)
{
require_once (e_PLUGIN.'forum/forum_class.php');
$f = &new e107forum;
2008-12-18 18:32:54 +00:00
$ret = $f->postDelete($postId);
return FORLAN_6.' and '.$ret.' '.FORLAN_7.'.';
2008-12-11 16:02:05 +00:00
}
2006-12-02 04:36:16 +00:00
?>