mirror of
https://github.com/e107inc/e107.git
synced 2025-07-31 20:00:37 +02:00
More nextprev sorting
This commit is contained in:
@@ -1,169 +1,178 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
* e107 website system
|
* e107 website system
|
||||||
*
|
*
|
||||||
* Copyright (C) 2008-2009 e107 Inc (e107.org)
|
* Copyright (C) 2008-2013 e107 Inc (e107.org)
|
||||||
* Released under the terms and conditions of the
|
* Released under the terms and conditions of the
|
||||||
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* $Source: /cvs_backup/e107_0.8/e107_plugins/chatbox_menu/chat.php,v $
|
* $Source: /cvs_backup/e107_0.8/e107_plugins/chatbox_menu/chat.php,v $
|
||||||
* $Revision$
|
* $Revision$
|
||||||
* $Date$
|
* $Date$
|
||||||
* $Author$
|
* $Author$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
require_once('../../class2.php');
|
||||||
|
if (!plugInstalled('chatbox_menu'))
|
||||||
|
{
|
||||||
|
header('Location: '.e_BASE.'index.php');
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
include_lan(e_PLUGIN."chatbox_menu/languages/".e_LANGUAGE."/".e_LANGUAGE.".php");
|
||||||
|
|
||||||
require_once('../../class2.php');
|
require_once(HEADERF);
|
||||||
if (!plugInstalled('chatbox_menu'))
|
|
||||||
|
$sql->db_Select("menus", "*", "menu_name='chatbox_menu'");
|
||||||
|
$row = $sql->db_Fetch();
|
||||||
|
|
||||||
|
if (!check_class($row['menu_class']))
|
||||||
|
{
|
||||||
|
$ns->tablerender(CHATBOX_L23, "<div style='text-align:center'>".CHATBOX_L24."</div>");
|
||||||
|
require_once(FOOTERF);
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!isset($pref['cb_mod']))
|
||||||
|
{
|
||||||
|
$pref['cb_mod'] = e_UC_ADMIN;
|
||||||
|
}
|
||||||
|
define("CB_MOD", check_class($pref['cb_mod']));
|
||||||
|
|
||||||
|
if($_POST['moderate'] && CB_MOD)
|
||||||
|
{
|
||||||
|
if(isset($_POST['block']))
|
||||||
|
{
|
||||||
|
foreach(array_keys($_POST['block']) as $k){ $kk[] = intval($k); }
|
||||||
|
$blocklist = implode(",", $kk);
|
||||||
|
$sql->db_Select_gen("UPDATE #chatbox SET cb_blocked=1 WHERE cb_id IN ({$blocklist})");
|
||||||
|
}
|
||||||
|
|
||||||
|
if(isset($_POST['unblock']))
|
||||||
|
{
|
||||||
|
foreach(array_keys($_POST['unblock']) as $k){ $kk[] = intval($k); }
|
||||||
|
$unblocklist = implode(",", $kk);
|
||||||
|
$sql->db_Select_gen("UPDATE #chatbox SET cb_blocked=0 WHERE cb_id IN ({$unblocklist})");
|
||||||
|
}
|
||||||
|
|
||||||
|
if(isset($_POST['delete']))
|
||||||
|
{
|
||||||
|
$deletelist = implode(",", array_keys($_POST['delete']));
|
||||||
|
$sql -> db_Select_gen("SELECT c.cb_id, u.user_id FROM #chatbox AS c
|
||||||
|
LEFT JOIN #user AS u ON SUBSTRING_INDEX(c.cb_nick,'.',1) = u.user_id
|
||||||
|
WHERE c.cb_id IN (".$deletelist.")");
|
||||||
|
$rowlist = $sql -> db_getList();
|
||||||
|
foreach ($rowlist as $row) {
|
||||||
|
$sql -> db_Select_gen("UPDATE #user SET user_chats=user_chats-1 where user_id = ".intval($row['user_id']));
|
||||||
|
}
|
||||||
|
$sql -> db_Select_gen("DELETE FROM #chatbox WHERE cb_id IN ({$deletelist})");
|
||||||
|
}
|
||||||
|
$e107cache->clear("nq_chatbox");
|
||||||
|
$message = CHATBOX_L18;
|
||||||
|
}
|
||||||
|
|
||||||
|
// when coming from search.php
|
||||||
|
if (strstr(e_QUERY, "fs"))
|
||||||
{
|
{
|
||||||
header("Location: ".e_BASE."index.php");
|
$cgtm = intval(str_replace(".fs", "", e_QUERY));
|
||||||
exit;
|
$fs = TRUE;
|
||||||
}
|
}
|
||||||
|
// end search
|
||||||
include_lan(e_PLUGIN."chatbox_menu/languages/".e_LANGUAGE."/".e_LANGUAGE.".php");
|
|
||||||
require_once(HEADERF);
|
if (e_QUERY ? $from = intval(e_QUERY) : $from = 0);
|
||||||
|
|
||||||
$sql->db_Select("menus", "*", "menu_name='chatbox_menu'");
|
$chat_total = $sql->db_Count('chatbox');
|
||||||
$row = $sql->db_Fetch();
|
|
||||||
|
$qry_where = (CB_MOD ? "1" : "cb_blocked=0");
|
||||||
if (!check_class($row['menu_class']))
|
|
||||||
|
// when coming from search.php calculate page number
|
||||||
|
if ($fs)
|
||||||
{
|
{
|
||||||
$ns->tablerender(CHATBOX_L23, "<div style='text-align:center'>".CHATBOX_L24."</div>");
|
$page_count = 0;
|
||||||
require_once(FOOTERF);
|
$row_count = 0;
|
||||||
exit;
|
$sql->db_Select("chatbox", "*", "{$qry_where} ORDER BY cb_datestamp DESC");
|
||||||
}
|
while ($row = $sql -> db_Fetch())
|
||||||
|
|
||||||
if(!isset($pref['cb_mod']))
|
|
||||||
{
|
|
||||||
$pref['cb_mod'] = e_UC_ADMIN;
|
|
||||||
}
|
|
||||||
define("CB_MOD", check_class($pref['cb_mod']));
|
|
||||||
|
|
||||||
if($_POST['moderate'] && CB_MOD)
|
|
||||||
{
|
|
||||||
if(isset($_POST['block']))
|
|
||||||
{
|
{
|
||||||
foreach(array_keys($_POST['block']) as $k){ $kk[] = intval($k); }
|
if ($row['cb_id'] == $cgtm)
|
||||||
$blocklist = implode(",", $kk);
|
|
||||||
$sql->db_Select_gen("UPDATE #chatbox SET cb_blocked=1 WHERE cb_id IN ({$blocklist})");
|
|
||||||
}
|
|
||||||
|
|
||||||
if(isset($_POST['unblock']))
|
|
||||||
{
|
|
||||||
foreach(array_keys($_POST['unblock']) as $k){ $kk[] = intval($k); }
|
|
||||||
$unblocklist = implode(",", $kk);
|
|
||||||
$sql->db_Select_gen("UPDATE #chatbox SET cb_blocked=0 WHERE cb_id IN ({$unblocklist})");
|
|
||||||
}
|
|
||||||
|
|
||||||
if(isset($_POST['delete']))
|
|
||||||
{
|
|
||||||
$deletelist = implode(",", array_keys($_POST['delete']));
|
|
||||||
$sql -> db_Select_gen("SELECT c.cb_id, u.user_id FROM #chatbox AS c
|
|
||||||
LEFT JOIN #user AS u ON SUBSTRING_INDEX(c.cb_nick,'.',1) = u.user_id
|
|
||||||
WHERE c.cb_id IN (".$deletelist.")");
|
|
||||||
$rowlist = $sql -> db_getList();
|
|
||||||
foreach ($rowlist as $row) {
|
|
||||||
$sql -> db_Select_gen("UPDATE #user SET user_chats=user_chats-1 where user_id = ".intval($row['user_id']));
|
|
||||||
}
|
|
||||||
$sql -> db_Select_gen("DELETE FROM #chatbox WHERE cb_id IN ({$deletelist})");
|
|
||||||
}
|
|
||||||
$e107cache->clear("nq_chatbox");
|
|
||||||
$message = CHATBOX_L18;
|
|
||||||
}
|
|
||||||
|
|
||||||
// when coming from search.php
|
|
||||||
if (strstr(e_QUERY, "fs")) {
|
|
||||||
$cgtm = str_replace(".fs", "", e_QUERY);
|
|
||||||
$fs = TRUE;
|
|
||||||
}
|
|
||||||
// end search
|
|
||||||
|
|
||||||
if (e_QUERY ? $from = e_QUERY : $from = 0);
|
|
||||||
|
|
||||||
$chat_total = $sql->db_Count("chatbox");
|
|
||||||
|
|
||||||
$qry_where = (CB_MOD ? "1" : "cb_blocked=0");
|
|
||||||
|
|
||||||
// when coming from search.php calculate page number
|
|
||||||
if ($fs) {
|
|
||||||
$page_count = 0;
|
|
||||||
$row_count = 0;
|
|
||||||
$sql->db_Select("chatbox", "*", "{$qry_where} ORDER BY cb_datestamp DESC");
|
|
||||||
while ($row = $sql -> db_Fetch()) {
|
|
||||||
if ($row['cb_id'] == $cgtm) {
|
|
||||||
$from = $page_count;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
$row_count++;
|
|
||||||
if ($row_count == 30) {
|
|
||||||
$row_count = 0;
|
|
||||||
$page_count += 30;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// end search
|
|
||||||
|
|
||||||
$sql->db_Select("chatbox", "*", "{$qry_where} ORDER BY cb_datestamp DESC LIMIT ".intval($from).", 30");
|
|
||||||
$obj2 = new convert;
|
|
||||||
|
|
||||||
$chatList = $sql->db_getList();
|
|
||||||
foreach ($chatList as $row)
|
|
||||||
{
|
|
||||||
$CHAT_TABLE_DATESTAMP = $obj2->convert_date($row['cb_datestamp'], "long");
|
|
||||||
$CHAT_TABLE_NICK = preg_replace("/[0-9]+\./", "", $row['cb_nick']);
|
|
||||||
$cb_message = $tp->toHTML($row['cb_message'], TRUE,'USER_BODY');
|
|
||||||
if($row['cb_blocked'])
|
|
||||||
{
|
|
||||||
$cb_message .= "<br />".CHATBOX_L25;
|
|
||||||
}
|
|
||||||
if(CB_MOD)
|
|
||||||
{
|
|
||||||
$cb_message .= "<br /><input type='checkbox' name='delete[{$row['cb_id']}]' value='1' />".CHATBOX_L10;
|
|
||||||
if($row['cb_blocked'])
|
|
||||||
{
|
{
|
||||||
$cb_message .= " <input type='checkbox' name='unblock[{$row['cb_id']}]' value='1' />".CHATBOX_L7;
|
$from = $page_count;
|
||||||
}
|
break;
|
||||||
else
|
}
|
||||||
|
$row_count++;
|
||||||
|
if ($row_count == 30)
|
||||||
{
|
{
|
||||||
$cb_message .= " <input type='checkbox' name='block[{$row['cb_id']}]' value='1' />".CHATBOX_L9;
|
$row_count = 0;
|
||||||
}
|
$page_count += 30;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// end search
|
||||||
|
|
||||||
|
$sql->db_Select("chatbox", "*", "{$qry_where} ORDER BY cb_datestamp DESC LIMIT ".intval($from).", 30");
|
||||||
|
$obj2 = new convert;
|
||||||
|
|
||||||
|
$chatList = $sql->db_getList();
|
||||||
|
foreach ($chatList as $row)
|
||||||
|
{
|
||||||
|
$CHAT_TABLE_DATESTAMP = $obj2->convert_date($row['cb_datestamp'], "long");
|
||||||
|
$CHAT_TABLE_NICK = preg_replace("/[0-9]+\./", "", $row['cb_nick']);
|
||||||
|
$cb_message = $tp->toHTML($row['cb_message'], TRUE,'USER_BODY');
|
||||||
|
if($row['cb_blocked'])
|
||||||
|
{
|
||||||
|
$cb_message .= "<br />".CHATBOX_L25;
|
||||||
|
}
|
||||||
|
if(CB_MOD)
|
||||||
|
{
|
||||||
|
$cb_message .= "<br /><input type='checkbox' name='delete[{$row['cb_id']}]' value='1' />".CHATBOX_L10;
|
||||||
|
if($row['cb_blocked'])
|
||||||
|
{
|
||||||
|
$cb_message .= " <input type='checkbox' name='unblock[{$row['cb_id']}]' value='1' />".CHATBOX_L7;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$cb_message .= " <input type='checkbox' name='block[{$row['cb_id']}]' value='1' />".CHATBOX_L9;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$CHAT_TABLE_MESSAGE = $cb_message;
|
||||||
|
$CHAT_TABLE_FLAG = ($flag ? "forumheader3" : "forumheader4");
|
||||||
|
|
||||||
|
if (!$CHAT_TABLE) {
|
||||||
|
if (file_exists(THEME."chat_template.php"))
|
||||||
|
{
|
||||||
|
require_once(THEME."chat_template.php");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
require_once(e_PLUGIN."chatbox_menu/chat_template.php");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$textstring .= preg_replace("/\{(.*?)\}/e", '$\1', $CHAT_TABLE);
|
||||||
|
$flag = (!$flag ? TRUE : FALSE);
|
||||||
|
}
|
||||||
|
|
||||||
|
$textstart = preg_replace("/\{(.*?)\}/e", '$\1', $CHAT_TABLE_START);
|
||||||
|
$textend = preg_replace("/\{(.*?)\}/e", '$\1', $CHAT_TABLE_END);
|
||||||
|
$text = $textstart.$textstring.$textend;
|
||||||
|
if(CB_MOD)
|
||||||
|
{
|
||||||
|
$text = "<form method='post' action='".e_SELF."'>".$text."<input type='submit' class='button' name='moderate' value='".CHATBOX_L13."' /></form>";
|
||||||
|
}
|
||||||
|
if($message)
|
||||||
|
{
|
||||||
|
$ns->tablerender("", $message);
|
||||||
|
}
|
||||||
|
|
||||||
|
$parms = "{$chat_total},30,{$from},".e_SELF.'?[FROM]';
|
||||||
|
$text .= "<div class='nextprev'>".$tp->parseTemplate("{NEXTPREV={$parms}}").'</div>';
|
||||||
|
|
||||||
$CHAT_TABLE_MESSAGE = $cb_message;
|
$ns->tablerender(CHATBOX_L20, $text);
|
||||||
$CHAT_TABLE_FLAG = ($flag ? "forumheader3" : "forumheader4");
|
|
||||||
|
|
||||||
if (!$CHAT_TABLE) {
|
//require_once(e_HANDLER."np_class.php");
|
||||||
if (file_exists(THEME."chat_template.php"))
|
//$ix = new nextprev("chat.php", $from, 30, $chat_total, CHATBOX_L21);
|
||||||
{
|
|
||||||
require_once(THEME."chat_template.php");
|
require_once(FOOTERF);
|
||||||
}
|
?>
|
||||||
else
|
|
||||||
{
|
|
||||||
require_once(e_PLUGIN."chatbox_menu/chat_template.php");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$textstring .= preg_replace("/\{(.*?)\}/e", '$\1', $CHAT_TABLE);
|
|
||||||
$flag = (!$flag ? TRUE : FALSE);
|
|
||||||
}
|
|
||||||
|
|
||||||
$textstart = preg_replace("/\{(.*?)\}/e", '$\1', $CHAT_TABLE_START);
|
|
||||||
$textend = preg_replace("/\{(.*?)\}/e", '$\1', $CHAT_TABLE_END);
|
|
||||||
$text = $textstart.$textstring.$textend;
|
|
||||||
if(CB_MOD)
|
|
||||||
{
|
|
||||||
$text = "<form method='post' action='".e_SELF."'>".$text."<input type='submit' class='button' name='moderate' value='".CHATBOX_L13."' /></form>";
|
|
||||||
}
|
|
||||||
if($message)
|
|
||||||
{
|
|
||||||
$ns->tablerender("", $message);
|
|
||||||
}
|
|
||||||
|
|
||||||
$ns->tablerender(CHATBOX_L20, $text);
|
|
||||||
|
|
||||||
|
|
||||||
require_once(e_HANDLER."np_class.php");
|
|
||||||
$ix = new nextprev("chat.php", $from, 30, $chat_total, CHATBOX_L21);
|
|
||||||
|
|
||||||
require_once(FOOTERF);
|
|
||||||
?>
|
|
||||||
|
16
top.php
16
top.php
@@ -2,7 +2,7 @@
|
|||||||
/*
|
/*
|
||||||
* e107 website system
|
* e107 website system
|
||||||
*
|
*
|
||||||
* Copyright (C) 2008-2011 e107 Inc (e107.org)
|
* Copyright (C) 2008-2013 e107 Inc (e107.org)
|
||||||
* Released under the terms and conditions of the
|
* Released under the terms and conditions of the
|
||||||
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
||||||
*
|
*
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
require_once ('class2.php');
|
require_once('class2.php');
|
||||||
|
|
||||||
$ns = e107::getRender();
|
$ns = e107::getRender();
|
||||||
$pref = e107::getPref();
|
$pref = e107::getPref();
|
||||||
@@ -50,7 +50,7 @@ else
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
require_once (HEADERF);
|
require_once(HEADERF);
|
||||||
if ($action == 'active')
|
if ($action == 'active')
|
||||||
{
|
{
|
||||||
require_once (e_HANDLER.'userclass_class.php');
|
require_once (e_HANDLER.'userclass_class.php');
|
||||||
@@ -124,7 +124,7 @@ if ($action == 'active')
|
|||||||
|
|
||||||
$ftotal = $sql->db_Count('forum_t', '(*)', 'WHERE `thread_parent` = 0');
|
$ftotal = $sql->db_Count('forum_t', '(*)', 'WHERE `thread_parent` = 0');
|
||||||
$parms = "{$ftotal},{$view},{$from},".e_SELF.'?[FROM].active.forum.'.$view;
|
$parms = "{$ftotal},{$view},{$from},".e_SELF.'?[FROM].active.forum.'.$view;
|
||||||
$text .= '<br />'.$tp->parseTemplate("{NEXTPREV={$parms}}");
|
$text .= "<div class='nextprev'>".$tp->parseTemplate("{NEXTPREV={$parms}}").'</div>';
|
||||||
$ns->tablerender(LAN_7, $text, 'nfp');
|
$ns->tablerender(LAN_7, $text, 'nfp');
|
||||||
/*
|
/*
|
||||||
require_once (e_HANDLER.'np_class.php');
|
require_once (e_HANDLER.'np_class.php');
|
||||||
@@ -195,7 +195,7 @@ if ($action == 'top')
|
|||||||
{
|
{
|
||||||
$ftotal = $sql->db_Count('user', '(*)', 'WHERE `user_forums` > 0');
|
$ftotal = $sql->db_Count('user', '(*)', 'WHERE `user_forums` > 0');
|
||||||
$parms = "{$ftotal},{$view},{$from},".e_SELF.'?[FROM].top.forum.'.$view;
|
$parms = "{$ftotal},{$view},{$from},".e_SELF.'?[FROM].top.forum.'.$view;
|
||||||
$text .= '<br />'.$tp->parseTemplate("{NEXTPREV={$parms}}");
|
$text .= "<div class='nextprev'>".$tp->parseTemplate("{NEXTPREV={$parms}}").'</div>';
|
||||||
}
|
}
|
||||||
$ns->tablerender(TOP_LAN_0, $text);
|
$ns->tablerender(TOP_LAN_0, $text);
|
||||||
/*
|
/*
|
||||||
@@ -255,8 +255,8 @@ if ($action == 'top')
|
|||||||
$text .= "</table>\n</div>";
|
$text .= "</table>\n</div>";
|
||||||
$ns->tablerender(TOP_LAN_3, $text);
|
$ns->tablerender(TOP_LAN_3, $text);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($subaction == "chat" || $subaction == "all")
|
if ($subaction == 'chat' || $subaction == 'all')
|
||||||
{
|
{
|
||||||
$top_forum_posters = $sql->db_Select("user", "*", "`user_chats` > 0 ORDER BY user_chats DESC LIMIT 0, 10");
|
$top_forum_posters = $sql->db_Select("user", "*", "`user_chats` > 0 ORDER BY user_chats DESC LIMIT 0, 10");
|
||||||
$text = "
|
$text = "
|
||||||
@@ -305,5 +305,5 @@ if ($action == 'top')
|
|||||||
$ns->tablerender(TOP_LAN_5, $text);
|
$ns->tablerender(TOP_LAN_5, $text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
require_once (FOOTERF);
|
require_once(FOOTERF);
|
||||||
?>
|
?>
|
Reference in New Issue
Block a user