?? help.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 + -