📄 global_autocomplete.class.inc
字号:
<?php/** * @copyright Intermesh 2005 * @author Merijn Schering <mschering@intermesh.nl> * @version $Revision: 1.1 $ $Date: 2006/11/22 11:02:00 $ * 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. * @package Framework * @subpackage Controls *//** * Create an form input field * * @package Framework * @subpackage Controls * * @access public */require_once($GO_CONFIG->class_path.'base/controls/autocomplete.class.inc');class global_autocomplete{ var $autocomplete; var $name; function global_autocomplete($name, $form_name='0', $xml_fields=null) { global $GO_CONFIG; $this->name=$name; if(!isset($xml_fields)) $xml_fields=array('show'=>'object_name','link_id'=>$name.'[link_id]','link_type'=>$name.'[link_type]'); $this->autocomplete = new autocomplete( 'global_autocomplete', false, 'object_name', '', $form_name, $GO_CONFIG->control_url.'global_search_xml.php', 'result', $xml_fields, false ); //$this->autocomplete ->add_bound_hidden_value('user_id', 0,'index.php'); } function get_html() { $input1 = new input('hidden',$this->name.'[link_type]'); $input2 = new input('hidden',$this->name.'[link_id]'); return $input1->get_html().$input2->get_html().$this->autocomplete->get_html(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -