📄 dirselect.php
字号:
<?php/* Copyright (C) 2005 Earl C. Terwilliger Email contact: earl@micpc.com Name : dirselect.php Usage: PHP script to provide a form for directory selection which will invoke the astdir.php script This file is part of The Asterisk WEB/PHP Management Interface. These files are free software; you can redistribute them and/or modify them 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. These programs are distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with these files (see COPYING); if not, write to the: Free Software Foundation, Inc. 59 Temple Place Suite 330 Boston, MA 02111-1307 USA*/include('header.php');include('files.php');?> <div align=center> <form action="astdir.php" method="post"> <table> <tr><td> <input type="radio" name="path" value="<?php echo $TFTPBOOTDIR; ?>"> <?php echo $TFTPBOOTDIR; ?> </td><td> </td></tr> <tr><td> <input type="radio" name="path" value="<?php echo $ASTCONFIGPATH; ?>"> <?php echo $ASTCONFIGPATH; ?> </td><td> </td></tr> <tr><td> <input type="radio" name="path" value="<?php echo $ASTLIBDIR; ?>"> <?php echo $ASTLIBDIR; ?> </td><td> </td></tr> <tr><td> <input type="radio" name="path" value="<?php echo $ASTSPOOLDIR; ?>"> <?php echo $ASTSPOOLDIR; ?> </td><td> </td></tr> <tr><td> <input type="radio" name="path" value="<?php echo $ASTLOGDIR; ?>"> <?php echo $ASTLOGDIR; ?> </td><td> </td></tr> <tr><td> <input type="radio" name="path" value="<?php echo $ASTWEBDIR; ?>"> <?php echo $ASTWEBDIR; ?> </td><td> </td></tr> <tr><td> </td><td> </td></tr> <tr><td> Alternate Directory <input type=text name="directory" value="" length=70> </td><td> </td></tr> </table> <br> <input type="submit" name="submit" value="Submit"></input> <input type="reset" name="reset" value="Reset"></input> </form> </div>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -