help.php
来自「GForge 3.0 协作开发平台 支持CVS, mailing lists, 」· PHP 代码 · 共 55 行
PHP
55 行
<?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 + =
减小字号Ctrl + -
显示快捷键?