search.php
来自「国外很不错的一个开源OA系统Group-Office」· PHP 代码 · 共 36 行
PHP
36 行
<?php/* Copyright Intermesh 2003 Author: Merijn Schering <mschering@intermesh.nl> Version: 1.0 Release date: 08 July 2003 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. */require_once ("../../../../Group-Office.php");//authenticate the user$GO_SECURITY->authenticate();//see if the user has access to this module//for this to work there must be a module named 'example'$GO_MODULES->authenticate('cms');require_once ($GO_THEME->theme_path."header.inc");require_once($GO_MODULES->path.'plugins/search.class.inc');$cms_search = new cms_search();?><script type="text/javascript" language="javascript">var oEditor = opener.FCKeditorAPI.GetInstance('content') ;oEditor.InsertHtml('<cms:plugin plugin_id="search"><?php echo $cms_search->get_name(); ?></cms:plugin>');window.close();</script><?phprequire_once ($GO_THEME->theme_path."footer.inc");
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?