aboutsummaryrefslogtreecommitdiffstats
path: root/config/freeswitch_dev/v_auto_attendant_options_edit.tmp
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2014-09-26 09:03:41 -0300
committerRenato Botelho <garga@FreeBSD.org>2014-09-26 09:03:41 -0300
commit783721d42370b30de032d1a886506b69cf68f606 (patch)
tree2d1a2a8db832e1cc60db8ca3a5664787fe165abb /config/freeswitch_dev/v_auto_attendant_options_edit.tmp
parent770bae54ed3453f2ed1b0039211deb177d9f7e0c (diff)
downloadpfsense-packages-783721d42370b30de032d1a886506b69cf68f606.tar.gz
pfsense-packages-783721d42370b30de032d1a886506b69cf68f606.tar.bz2
pfsense-packages-783721d42370b30de032d1a886506b69cf68f606.zip
Remove anyterm (it has closed binaries and bash inside), and also removed unmaintained freeswitch and freeswitch-dev (port was removed from FreeBSD ports tree)
Diffstat (limited to 'config/freeswitch_dev/v_auto_attendant_options_edit.tmp')
-rw-r--r--config/freeswitch_dev/v_auto_attendant_options_edit.tmp252
1 files changed, 0 insertions, 252 deletions
diff --git a/config/freeswitch_dev/v_auto_attendant_options_edit.tmp b/config/freeswitch_dev/v_auto_attendant_options_edit.tmp
deleted file mode 100644
index d91a077b..00000000
--- a/config/freeswitch_dev/v_auto_attendant_options_edit.tmp
+++ /dev/null
@@ -1,252 +0,0 @@
-<?php
-/* $Id$ */
-/*
-
- v_auto_attendant_options_edit.php
- Copyright (C) 2008 Mark J Crane
- All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are met:
-
- 1. Redistributions of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
-
- 2. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-
- THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
- INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
- AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
- AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
- OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- POSSIBILITY OF SUCH DAMAGE.
-*/
-
-require("guiconfig.inc");
-require("/usr/local/pkg/v_config.inc");
-
-
-$a_ivr_options = &$config['installedpackages']['freeswitchivroptions']['config'];
-
-$id = $_GET['id'];
-if (isset($_POST['id'])) {
- $id = $_POST['id'];
-}
-
-$parentid = $_GET['parentid'];
-if (isset($_POST['parentid'])) {
- $parentid = $_POST['parentid'];
-}
-
-$ivrid = $_GET['ivrid'];
-if (isset($_POST['ivrid'])) {
- $ivrid = $_POST['ivrid'];
-}
-
-
-if (isset($id) && $a_ivr_options[$id]) {
- $pconfig['optionaction'] = $a_ivr_options[$id]['optionaction'];
- $pconfig['optionnumber'] = $a_ivr_options[$id]['optionnumber'];
- $pconfig['optiontype'] = $a_ivr_options[$id]['optiontype'];
- $pconfig['optionprofile'] = $a_ivr_options[$id]['optionprofile'];
- $pconfig['optiondest'] = $a_ivr_options[$id]['optiondest'];
- $pconfig['optiondescr'] = $a_ivr_options[$id]['optiondescr'];
-}
-else {
- if (isset($_GET['a'])) {
- if ($_GET['a'] == "action"){ $pconfig['optionaction'] = "action"; }
- if ($_GET['a'] == "antiaction"){ $pconfig['optionaction'] = "anti-action"; }
- }
-}
-
-
-if ($_POST) {
-
- unset($input_errors);
- $pconfig = $_POST;
-
-
- if (!$input_errors) {
-
- $ivroptionent = array();
- $ivroptionent['ivrid'] = $_POST['ivrid'];
- $ivroptionent['optionnumber'] = $_POST['optionnumber'];
- $ivroptionent['optiontype'] = $_POST['optiontype'];
- $ivroptionent['optionprofile'] = $_POST['optionprofile'];
- $ivroptionent['optionaction'] = $_POST['optionaction'];
- $ivroptionent['optiondest'] = $_POST['optiondest'];
- $ivroptionent['optiondescr'] = $_POST['optiondescr'];
-
- if (isset($id) && $a_ivr_options[$id]) {
- //update
- $a_ivr_options[$id] = $ivroptionent;
- }
- else {
- //add
- $a_ivr_options[] = $ivroptionent;
- }
-
-
- write_config();
- sync_package_v_ivr();
-
- header("Location: v_auto_attendant_edit.php?id=".$parentid);
- exit;
- }
-}
-
-include("head.inc");
-
-?>
-
-<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
-<?php
-include("fbegin.inc");
-if ($v_label_show) {
- echo "<p class=\"pgtitle\">$v_label: Auto Attendant: Options: Edit</p>\n";
-}
-if ($input_errors) print_input_errors($input_errors);
-
-?>
-
-<div id="mainlevel">
-<table width="100%" border="0" cellpadding="0" cellspacing="0">
-<tr><td class="tabnavtbl">
-<?php
-
-build_menu();
-
-?>
-</td></tr>
-</table>
-<table width="100%" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td class="tabcont" >
- <br />
- <form action="v_auto_attendant_options_edit.php" method="post" name="iform" id="iform">
- <table width="100%" border="0" cellpadding="6" cellspacing="0">
- <tr>
- <td width="22%" valign="top" class="vncellreq">Option Number</td>
- <td width="78%" class="vtable">
- <input name="optionnumber" type="text" class="formfld" id="optionnumber" size="40" value="<?=htmlspecialchars($pconfig['optionnumber']);?>">
- <br> <span class="vexpl">Option Number<br>
- e.g. <em>1</em></span></td>
- </tr>
- <tr>
- <td width="22%" valign="top" class="vncellreq">Type</td>
- <td width="78%" class="vtable">
- <?php
- echo " <select name='optiontype' class='formfld'>\n";
- echo " <option></option>\n";
- if (htmlspecialchars($pconfig['optiontype']) == "extension") {
- echo " <option selected='yes'>extension</option>\n";
- }
- else {
- echo " <option>extension</option>\n";
- }
- if (htmlspecialchars($pconfig['optiontype']) == "voicemail") {
- echo " <option selected='yes'>voicemail</option>\n";
- }
- else {
- echo " <option>voicemail</option>\n";
- }
- if (htmlspecialchars($pconfig['optiontype']) == "sip uri") {
- echo " <option selected='yes'>sip uri</option>\n";
- }
- else {
- echo " <option>sip uri</option>\n";
- }
- echo " </select>\n";
- ?>
- </td>
- </tr>
-
- <tr>
- <td width="22%" valign="top" class="vncellreq">Profile</td>
- <td width="78%" class="vtable">
- <?php
- echo " <select name='optionprofile' class='formfld'>\n";
- echo " <option></option>\n";
- if (htmlspecialchars($pconfig['optionprofile']) == "auto") {
- echo " <option selected='yes'>auto</option>\n";
- }
- else {
- echo " <option>auto</option>\n";
- }
-
- foreach (ListFiles($v_conf_dir.'/sip_profiles') as $key=>$sip_profile_file){
- $sip_profile_name = str_replace(".xml", "", $sip_profile_file);
-
- if (htmlspecialchars($pconfig['optionprofile']) == $sip_profile_name) {
- echo " <option selected='yes'>$sip_profile_name</option>\n";
- }
- else {
- echo " <option>$sip_profile_name</option>\n";
- }
- }
- echo " </select>\n";
-
- ?>
- </td>
- </tr>
-
- <tr>
- <td width="22%" valign="top" class="vncellreq">Destination</td>
- <td width="78%" class="vtable">
- <input name="optiondest" type="text" class="formfld" id="optiondest" size="40" value="<?=htmlspecialchars($pconfig['optiondest']);?>">
- <br>
- <span class="vexpl">
- <!--<b>examples:</b><br />-->
- extension: 1001<br />
- voicemail: 1001<br />
- sip uri (voicemail): sofia/internal/*98@${domain}<br />
- sip uri (external number): sofia/gateway/gatewayname/12081231234<br />
- sip uri (auto attendant): sofia/internal/5002@${domain}<br />
- sip uri (user): /user/1001@${domain}<br />
- </span>
- </td>
- </tr>
- <tr>
- <td width="22%" valign="top" class="vncell">Description</td>
- <td width="78%" class="vtable">
- <input name="optiondescr" type="text" class="formfld" id="optiondescr" size="40" value="<?=htmlspecialchars($pconfig['optiondescr']);?>">
- <br> <span class="vexpl">You may enter a description here
- for your reference (not parsed).</span></td>
- </tr>
- <tr>
- <td width="22%" valign="top">&nbsp;</td>
- <td width="78%">
- <input name="ivrid" type="hidden" value="<?=$ivrid;?>">
- <input name="parentid" type="hidden" value="<?=$parentid;?>">
- <input name="optionaction" type="hidden" value="<?=$pconfig['optionaction'];?>">
- <?php if (isset($id) && $a_ivr_options[$id]): ?>
- <input name="id" type="hidden" value="<?=$id;?>">
- <?php endif; ?>
- <input name="Submit" type="submit" class="formbtn" value="Save"> <input class="formbtn" type="button" value="Cancel" onclick="history.back()">
- </td>
- </tr>
- </table>
- </form>
-
- <br>
- <br>
- <br>
- <br>
- <br>
- <br>
-
- </td>
- </tr>
-</table>
-
-</div>
-
-<?php include("fend.inc"); ?>
-</body>
-</html>