⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 help.php

📁 GForge 3.0 协作开发平台 支持CVS, mailing lists, bug tracking, message boards/forums, task management, perman
💻 PHP
字号:
<?php/** * Misc help page functions * * SourceForge: Breaking Down the Barriers to Open Source Development * Copyright 1999-2001 (c) VA Linux Systems * http://sourceforge.net * * @version   $Id: help.php,v 1.6 2001/06/18 20:22:23 dbrogdon Exp $ *//** * help_button() - Show a help button. * * @param		string	The button type * @param		int		The trove category ID */function help_button($type,$helpid) {	if ($type == 'trove_cat') {		return ('<a href="javascript:help_window(\'/help/trove_cat.php'			.'?trove_cat_id='.$helpid.'\')"><strong>(?)</strong></a>');	}}/** * help_header() - Show a help page header * * @param		string	Header title */function help_header($title) {?><html><head><title><?php print $title; ?></title></head><body style="background-color:white"><h4><?php echo $GLOBALS['sys_name']; ?> Site Help System:</h4><h2><?php print $title; ?></h2><hr /><?php}/** * help_footer() - Show a help page footer */function help_footer() {?></body></html><?php}?>

⌨️ 快捷键说明

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