subscribed.php.t

来自「eGroupWare is a multi-user, web-based gr」· T 代码 · 共 83 行

T
83
字号
<?php/**************************************************************************** copyright            : (C) 2001-2003 Advanced Internet Designs Inc.* email                : forum@prohost.org* $Id: subscribed.php.t,v 1.1.1.1 2003/10/17 21:11:30 ralfbecker Exp $** This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or * (at your option) any later version.***************************************************************************//*{PRE_HTML_PHP}*/	if (!_uid) {		std_error('login');	}	/* delete forum subscription */	if (isset($_GET['frm_id']) && ($_GET['frm_id'] = (int)$_GET['frm_id'])) {		forum_notify_del(_uid, $_GET['frm_id']);	}	/* delete thread subscription */	if (isset($_GET['th']) && ($_GET['th'] = (int)$_GET['th'])) {		thread_notify_del(_uid, $_GET['th']);	}	ses_update_status($usr->sid, '{TEMPLATE: subscribed_update}');/*{POST_HTML_PHP}*/	/* fetch a list of all the accessible forums */	$lmt = '';	if (!($usr->users_opt & 1048576)) {		$c = uq('SELECT g1.resource_id				FROM {SQL_TABLE_PREFIX}group_cache g1				LEFT JOIN {SQL_TABLE_PREFIX}group_cache g2 ON g2.user_id='._uid.' AND g1.resource_id=g2.resource_id				LEFT JOIN {SQL_TABLE_PREFIX}mod m ON m.forum_id=g1.resource_id AND m.user_id='._uid.'				WHERE g1.user_id=2147483647 AND (m.id IS NULL AND ((CASE WHEN g2.id IS NOT NULL THEN g2.group_cache_opt ELSE g1.group_cache_opt END) & 2)=0)');		while ($r = db_rowarr($c)) {			$lmt .= $r[0] . ',';		}		if ($lmt) {			$lmt[strlen($lmt) - 1] = ' ';			$lmt = ' AND forum_id NOT IN('.$lmt.') ';		} else {			$lmt = ' AND forum_id NOT IN(0) ';		}	}	$c = uq('SELECT f.id, f.name FROM {SQL_TABLE_PREFIX}forum_notify fn LEFT JOIN {SQL_TABLE_PREFIX}forum f ON fn.forum_id=f.id WHERE fn.user_id='._uid.' '.$lmt.' ORDER BY f.last_post_id DESC');	$subscribed_forum_data = '';	while (($r = db_rowarr($c))) {		$subscribed_forum_data .= '{TEMPLATE: subscribed_forum_entry}';	}	if (!$subscribed_forum_data) {		$subscribed_forum_data = '{TEMPLATE: no_subscribed_forums}';	}	/* Since a person can have MANY subscribed threads, we need a pager & for the pager we need a entry count */	$total = q_singleval('SELECT count(*) FROM {SQL_TABLE_PREFIX}thread_notify tn LEFT JOIN {SQL_TABLE_PREFIX}thread t ON tn.thread_id=t.id INNER JOIN {SQL_TABLE_PREFIX}msg m ON t.root_msg_id=m.id WHERE tn.user_id='._uid.' '.$lmt);	if (!isset($_GET['start']) || !($start = (int)$_GET['start'])) {		$start = 0;	}	$subscribed_thread_data = '';	$c = uq('SELECT t.id, m.subject FROM {SQL_TABLE_PREFIX}thread_notify tn INNER JOIN {SQL_TABLE_PREFIX}thread t ON tn.thread_id=t.id INNER JOIN {SQL_TABLE_PREFIX}msg m ON t.root_msg_id=m.id WHERE tn.user_id='._uid.' '.$lmt.' ORDER BY t.last_post_id DESC LIMIT '.qry_limit($THREADS_PER_PAGE, $start));	while (($r = db_rowarr($c))) {		$subscribed_thread_data .= '{TEMPLATE: subscribed_thread_entry}';	}	if (!$subscribed_thread_data) {		$subscribed_thread_data = '{TEMPLATE: no_subscribed_threads}';	}	$pager = tmpl_create_pager($start, $THREADS_PER_PAGE, $total, '{ROOT}?t=subscribed&a=1&'._rsid, '#fff');/*{POST_PAGE_PHP_CODE}*/?>{TEMPLATE: SUBSCRIBED_PAGE}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?