tabs.inc.t

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

T
50
字号
<?php/**************************************************************************** copyright            : (C) 2001-2003 Advanced Internet Designs Inc.* email                : forum@prohost.org* $Id: tabs.inc.t,v 1.3 2003/12/18 18:20:49 iliaa 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.***************************************************************************/$tabs = '';if (_uid) {	$tablist = array('{TEMPLATE: tabs_register}'=>'register','{TEMPLATE: tabs_subscriptions}'=>'subscribed','{TEMPLATE: tabs_referrals}'=>'referals','{TEMPLATE: tabs_buddy_list}'=>'buddy_list','{TEMPLATE: tabs_ignore_list}'=>'ignore_list');	if (isset($_POST['mod_id'])) {		$mod_id_chk = $_POST['mod_id'];	} else if (isset($_GET['mod_id'])) {		$mod_id_chk = $_GET['mod_id'];	} else {		$mod_id_chk = null;	}	if (!$mod_id_chk) {		if ($FUD_OPT_1 & 1024) {			$tablist['{TEMPLATE: tabs_private_messaging}'] = 'pmsg';		}		$pg = ($_GET['t'] == 'pmsg_view' || $_GET['t'] == 'ppost') ? 'pmsg' : $_GET['t'];		foreach($tablist as $tab_name => $tab) {			$tab_url = '{ROOT}?t='.$tab.'&amp;'._rsid;			if ($tab == 'referals') {				if (!($FUD_OPT_2 & 8192)) {					continue;				}				$tab_url .= '&amp;id='._uid;			}			$tabs .= $pg == $tab ? '{TEMPLATE: active_tab}' : '{TEMPLATE: inactive_tab}';		}		$tabs = '{TEMPLATE: tablist}';	}}?>

⌨️ 快捷键说明

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