post_opt.inc.t

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

T
66
字号
<?php/**************************************************************************** copyright            : (C) 2001-2003 Advanced Internet Designs Inc.* email                : forum@prohost.org* $Id: post_opt.inc.t,v 1.1.1.1 2003/10/17 21:11:27 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.***************************************************************************/function tmpl_post_options($arg, $perms=0){	$post_opt_html		= '{TEMPLATE: post_opt_html_off}';	$post_opt_fud		= '{TEMPLATE: post_opt_fud_off}';	$post_opt_images 	= '{TEMPLATE: post_opt_images_off}';	$post_opt_smilies	= '{TEMPLATE: post_opt_smilies_off}';	$edit_time_limit	= '';	if (is_int($arg)) {		if ($arg & 16) {			$post_opt_fud = '{TEMPLATE: post_opt_fud_on}';		} else if (!($arg & 8)) {			$post_opt_html = '{TEMPLATE: post_opt_html_on}';		}		if ($perms & 16384) {			$post_opt_smilies = '{TEMPLATE: post_opt_smilies_on}';		}		if ($perms & 32768) {			$post_opt_images = '{TEMPLATE: post_opt_images_on}';		}		$edit_time_limit = $GLOBALS['EDIT_TIME_LIMIT'] ? '{TEMPLATE: edit_time_limit}' : '{TEMPLATE: no_edit_time_limit}';	} else if ($arg == 'private') {		$o =& $GLOBALS['FUD_OPT_1'];		if ($o & 4096) {			$post_opt_fud = '{TEMPLATE: post_opt_fud_on}';		} else if (!($o & 2048)) {			$post_opt_html = '{TEMPLATE: post_opt_html_on}';		}		if ($o & 16384) {			$post_opt_images = '{TEMPLATE: post_opt_images_on}';		}		if ($o & 8192) {			$post_opt_smilies = '{TEMPLATE: post_opt_smilies_on}';		}	} else if ($arg == 'sig') {		$o =& $GLOBALS['FUD_OPT_1'];		if ($o & 131072) {			$post_opt_fud = '{TEMPLATE: post_opt_fud_on}';		} else if (!($o & 65536)) {			$post_opt_html = '{TEMPLATE: post_opt_html_on}';		}		if ($o & 524288) {			$post_opt_images = '{TEMPLATE: post_opt_images_on}';		}		if ($o & 262144) {			$post_opt_smilies = '{TEMPLATE: post_opt_smilies_on}';		}	}	return '{TEMPLATE: posting_options}';}?>

⌨️ 快捷键说明

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