1
0
mirror of https://github.com/e107inc/e107.git synced 2025-02-12 10:40:20 +01:00
php-e107/e107_plugins/forum/forum_mod.php

76 lines
1.6 KiB
PHP
Raw Normal View History

2006-12-02 04:36:16 +00:00
<?php
/*
2009-11-17 13:48:46 +00:00
* e107 website system
*
* Copyright (C) 2008-2013 e107 Inc (e107.org)
2009-11-17 13:48:46 +00:00
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*/
2009-11-19 09:46:14 +00:00
if (!defined('e107_INIT')) { exit(); }
2017-01-23 09:41:23 -08:00
e107::includeLan(e_PLUGIN.'forum/languages/'.e_LANGUAGE.'/lan_forum_admin.php');
2006-12-02 04:36:16 +00:00
function forum_thread_moderate($p)
{
$e107 = e107::getInstance();
$sql = e107::getDb();
foreach ($p as $key => $val)
{
2006-12-02 04:36:16 +00:00
if (preg_match("#(.*?)_(\d+)_x#", $key, $matches))
{
$act = $matches[1];
$id = (int)$matches[2];
switch ($act)
2006-12-02 04:36:16 +00:00
{
case 'lock':
$sql->update('forum_thread', 'thread_active=0 WHERE thread_id='.$id);
2015-01-30 18:14:06 -08:00
return LAN_FORUM_CLOSE;
2008-12-18 18:32:54 +00:00
break;
case 'unlock':
$sql->update('forum_thread', 'thread_active=1 WHERE thread_id='.$id);
2015-01-30 18:14:06 -08:00
return LAN_FORUM_OPEN;
2008-12-18 18:32:54 +00:00
break;
case 'stick':
$sql->update('forum_thread', 'thread_sticky=1 WHERE thread_id='.$id);
2015-01-30 18:14:06 -08:00
return LAN_FORUM_STICK;
2008-12-18 18:32:54 +00:00
break;
case 'unstick':
$sql->update('forum_thread', 'thread_sticky=0 WHERE thread_id='.$id);
2015-01-30 18:14:06 -08:00
return LAN_FORUM_UNSTICK;
2008-12-18 18:32:54 +00:00
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);
2015-01-30 18:14:06 -08:00
return LAN_CANCEL.' 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);
2015-01-30 18:14:06 -08:00
return LAN_CANCEL.' and '.$ret.' '.FORLAN_7.'.';
2008-12-11 16:02:05 +00:00
}
2006-12-02 04:36:16 +00:00
?>