📄 new_folder.inc
字号:
<?php/*Copyright Intermesh 2003Author: Merijn Schering <mschering@intermesh.nl>Version: 1.0 Release date: 08 July 2003This program is free software; you can redistribute it and/or modify itunder the terms of the GNU General Public License as published by theFree Software Foundation; either version 2 of the License, or (at youroption) any later version.*/$tabstrip = new tabstrip('folder_tab', $fbNewFolder);$tabstrip->set_attribute('style','width:100%');$tabstrip->set_return_to($_SERVER['PHP_SELF']."?path=".$urlencoded_path);if (isset($feedback)){ $p = new html_element('p', $feedback); $p->set_attribute('class','Error'); $tabstrip->add_html_element($p);}$table = new table();$row = new table_row();$row->add_cell(new table_cell($strName.':*'));$input = new input('text','name');$input->set_attribute('style','width:250px;');$row->add_cell(new table_cell($input->get_html()));$table->add_row($row);$tabstrip->add_html_element($table);$tabstrip->add_html_element(new button($cmdOk, "javascript:save()"));$tabstrip->add_html_element(new button($cmdCancel, "javascript:document.location='".$_SERVER['PHP_SELF']."?path=".$urlencoded_path."';"));$form->add_html_element($tabstrip);?><script type="text/javascript">function save(){ document.forms[0].task.value='new_folder'; document.forms[0].submit();}</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -