314 lines
10 KiB
PHP
314 lines
10 KiB
PHP
<?php
|
|
/*
|
|
FusionPBX
|
|
Version: MPL 1.1
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version
|
|
1.1 (the "License"); you may not use this file except in compliance with
|
|
the License. You may obtain a copy of the License at
|
|
http://www.mozilla.org/MPL/
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
for the specific language governing rights and limitations under the
|
|
License.
|
|
|
|
The Original Code is FusionPBX
|
|
|
|
The Initial Developer of the Original Code is
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2012
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
Contributor(s):
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
*/
|
|
include "root.php";
|
|
require_once "resources/require.php";
|
|
require_once "resources/check_auth.php";
|
|
if (permission_exists('module_add') || permission_exists('module_edit')) {
|
|
//access granted
|
|
}
|
|
else {
|
|
echo "access denied";
|
|
exit;
|
|
}
|
|
|
|
//add multi-lingual support
|
|
$language = new text;
|
|
$text = $language->get();
|
|
|
|
//determin the action add or update
|
|
if (isset($_REQUEST["id"])) {
|
|
$action = "update";
|
|
$module_uuid = check_str($_REQUEST["id"]);
|
|
}
|
|
else {
|
|
$action = "add";
|
|
}
|
|
|
|
//set the http post variables to php variables
|
|
if (count($_POST)>0) {
|
|
$module_label = check_str($_POST["module_label"]);
|
|
$module_name = check_str($_POST["module_name"]);
|
|
$module_description = check_str($_POST["module_description"]);
|
|
$module_category = check_str($_POST["module_category"]);
|
|
$module_order = check_str($_POST["module_order"]);
|
|
$module_enabled = check_str($_POST["module_enabled"]);
|
|
$module_default_enabled = check_str($_POST["module_default_enabled"]);
|
|
}
|
|
|
|
if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
|
|
|
|
$msg = '';
|
|
if ($action == "update") {
|
|
$module_uuid = check_str($_POST["module_uuid"]);
|
|
}
|
|
|
|
//check for all required data
|
|
if (strlen($module_label) == 0) { $msg .= $text['message-required'].$text['label-label']."<br>\n"; }
|
|
if (strlen($module_name) == 0) { $msg .= $text['message-required'].$text['label-module_name']."<br>\n"; }
|
|
//if (strlen($module_description) == 0) { $msg .= $text['message-required'].$text['label-description']."<br>\n"; }
|
|
if (strlen($module_category) == 0) { $msg .= $text['message-required'].$text['label-module_category']."<br>\n"; }
|
|
if (strlen($module_enabled) == 0) { $msg .= $text['message-required'].$text['label-enabled']."<br>\n"; }
|
|
if (strlen($module_default_enabled) == 0) { $msg .= $text['message-required'].$text['label-default_enabled']."<br>\n"; }
|
|
if (strlen($msg) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
|
require_once "resources/header.php";
|
|
require_once "resources/persist_form_var.php";
|
|
echo "<div align='center'>\n";
|
|
echo "<table><tr><td>\n";
|
|
echo $msg."<br />";
|
|
echo "</td></tr></table>\n";
|
|
persistformvar($_POST);
|
|
echo "</div>\n";
|
|
require_once "resources/footer.php";
|
|
return;
|
|
}
|
|
|
|
//add or update the database
|
|
if ($_POST["persistformvar"] != "true") {
|
|
if ($action == "add" && permission_exists('module_add')) {
|
|
$module_uuid = uuid();
|
|
$sql = "insert into v_modules ";
|
|
$sql .= "(";
|
|
$sql .= "module_uuid, ";
|
|
$sql .= "module_label, ";
|
|
$sql .= "module_name, ";
|
|
$sql .= "module_description, ";
|
|
$sql .= "module_category, ";
|
|
$sql .= "module_order, ";
|
|
$sql .= "module_enabled, ";
|
|
$sql .= "module_default_enabled ";
|
|
$sql .= ")";
|
|
$sql .= "values ";
|
|
$sql .= "(";
|
|
$sql .= "'$module_uuid', ";
|
|
$sql .= "'$module_label', ";
|
|
$sql .= "'$module_name', ";
|
|
$sql .= "'$module_description', ";
|
|
$sql .= "'$module_category', ";
|
|
$sql .= "'$module_order', ";
|
|
$sql .= "'$module_enabled', ";
|
|
$sql .= "'$module_default_enabled' ";
|
|
$sql .= ")";
|
|
$db->exec(check_sql($sql));
|
|
unset($sql);
|
|
|
|
$module = new modules;;
|
|
$module->xml();
|
|
|
|
messages::add($text['message-add']);
|
|
header("Location: modules.php");
|
|
return;
|
|
} //if ($action == "add")
|
|
|
|
if ($action == "update" && permission_exists('module_edit')) {
|
|
$sql = "update v_modules set ";
|
|
$sql .= "module_label = '$module_label', ";
|
|
$sql .= "module_name = '$module_name', ";
|
|
$sql .= "module_description = '$module_description', ";
|
|
$sql .= "module_category = '$module_category', ";
|
|
$sql .= "module_order = '$module_order', ";
|
|
$sql .= "module_enabled = '$module_enabled', ";
|
|
$sql .= "module_default_enabled = '$module_default_enabled' ";
|
|
$sql .= "where module_uuid = '$module_uuid' ";
|
|
$db->exec(check_sql($sql));
|
|
unset($sql);
|
|
|
|
$module = new modules;;
|
|
$module->xml();
|
|
|
|
messages::add($text['message-update']);
|
|
header("Location: modules.php");
|
|
return;
|
|
} //if ($action == "update")
|
|
} //if ($_POST["persistformvar"] != "true")
|
|
} //(count($_POST)>0 && strlen($_POST["persistformvar"]) == 0)
|
|
|
|
//pre-populate the form
|
|
if (count($_GET)>0 && $_POST["persistformvar"] != "true") {
|
|
$module_uuid = $_GET["id"];
|
|
$sql = "select * from v_modules ";
|
|
$sql .= "where module_uuid = '$module_uuid' ";
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
$prep_statement->execute();
|
|
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
|
foreach ($result as &$row) {
|
|
$module_label = $row["module_label"];
|
|
$module_name = $row["module_name"];
|
|
$module_description = $row["module_description"];
|
|
$module_category = $row["module_category"];
|
|
$module_order = $row["module_order"];
|
|
$module_enabled = $row["module_enabled"];
|
|
$module_default_enabled = $row["module_default_enabled"];
|
|
break; //limit to 1 row
|
|
}
|
|
unset ($prep_statement);
|
|
}
|
|
|
|
//show the header
|
|
require_once "resources/header.php";
|
|
if ($action == "add") {
|
|
$document['title'] = $text['title-module_add'];
|
|
}
|
|
if ($action == "update") {
|
|
$document['title'] = $text['title-module_edit'];
|
|
}
|
|
|
|
//show the content
|
|
echo "<form method='post' name='frm' action=''>\n";
|
|
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
|
|
|
echo "<tr>\n";
|
|
if ($action == "add") {
|
|
echo "<td align='left' width='30%' nowrap><b>".$text['header-module_add']."</b></td>\n";
|
|
}
|
|
if ($action == "update") {
|
|
echo "<td align='left' width='30%' nowrap><b>".$text['header-module_edit']."</b></td>\n";
|
|
}
|
|
echo "<td width='70%' align='right'>";
|
|
echo " <input type='button' class='btn' alt='".$text['button-back']."' onclick=\"window.location='modules.php'\" value='".$text['button-back']."'>";
|
|
echo " <input type='submit' name='submit' class='btn' value='".$text['button-save']."'>\n";
|
|
echo "</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap>\n";
|
|
echo " ".$text['label-label']."\n";
|
|
echo "</td>\n";
|
|
echo "<td class='vtable' align='left'>\n";
|
|
echo " <input class='formfld' type='text' name='module_label' maxlength='255' value=\"$module_label\">\n";
|
|
echo "<br />\n";
|
|
echo "\n";
|
|
echo "</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap>\n";
|
|
echo " ".$text['label-module_name']."\n";
|
|
echo "</td>\n";
|
|
echo "<td class='vtable' align='left'>\n";
|
|
echo " <input class='formfld' type='text' name='module_name' maxlength='255' value=\"$module_name\">\n";
|
|
echo "<br />\n";
|
|
echo "\n";
|
|
echo "</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap>\n";
|
|
echo " ".$text['label-order']."\n";
|
|
echo "</td>\n";
|
|
echo "<td class='vtable' align='left'>\n";
|
|
echo " <input class='formfld' type='text' name='module_order' maxlength='255' value=\"$module_order\">\n";
|
|
echo "<br />\n";
|
|
echo "\n";
|
|
echo "</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap>\n";
|
|
echo " ".$text['label-module_category']."\n";
|
|
echo "</td>\n";
|
|
echo "<td class='vtable' align='left'>\n";
|
|
$table_name = 'v_modules';$field_name = 'module_category';$sql_where_optional = "";$field_current_value = $module_category;
|
|
echo html_select_other($db, $table_name, $field_name, $sql_where_optional, $field_current_value);
|
|
echo "<br />\n";
|
|
echo "\n";
|
|
echo "</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap>\n";
|
|
echo " ".$text['label-enabled']."\n";
|
|
echo "</td>\n";
|
|
echo "<td class='vtable' align='left'>\n";
|
|
echo " <select class='formfld' name='module_enabled'>\n";
|
|
if ($module_enabled == "false") {
|
|
echo " <option value='false' SELECTED >".$text['option-false']."</option>\n";
|
|
}
|
|
else {
|
|
echo " <option value='false'>".$text['option-false']."</option>\n";
|
|
}
|
|
if ($module_enabled == "true") {
|
|
echo " <option value='true' SELECTED >".$text['option-true']."</option>\n";
|
|
}
|
|
else {
|
|
echo " <option value='true'>".$text['option-true']."</option>\n";
|
|
}
|
|
echo " </select>\n";
|
|
echo "<br />\n";
|
|
echo "\n";
|
|
echo "</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap>\n";
|
|
echo " ".$text['label-default_enabled']."\n";
|
|
echo "</td>\n";
|
|
echo "<td class='vtable' align='left'>\n";
|
|
echo " <select class='formfld' name='module_default_enabled'>\n";
|
|
if ($module_default_enabled == "false") {
|
|
echo " <option value='false' selected='selected'>".$text['option-false']."</option>\n";
|
|
}
|
|
else {
|
|
echo " <option value='false'>".$text['option-false']."</option>\n";
|
|
}
|
|
if ($module_default_enabled == "true") {
|
|
echo " <option value='true' selected='selected'>".$text['option-true']."</option>\n";
|
|
}
|
|
else {
|
|
echo " <option value='true'>".$text['option-true']."</option>\n";
|
|
}
|
|
echo " </select>\n";
|
|
echo "<br />\n";
|
|
echo "\n";
|
|
echo "</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' align='left' nowrap>\n";
|
|
echo " ".$text['label-description']."\n";
|
|
echo "</td>\n";
|
|
echo "<td class='vtable' align='left'>\n";
|
|
echo " <input class='formfld' type='text' name='module_description' maxlength='255' value=\"$module_description\">\n";
|
|
echo "<br />\n";
|
|
echo "\n";
|
|
echo "</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo " <tr>\n";
|
|
echo " <td colspan='2' align='right'>\n";
|
|
if ($action == "update") {
|
|
echo " <input type='hidden' name='module_uuid' value='$module_uuid'>\n";
|
|
}
|
|
echo " <br>";
|
|
echo " <input type='submit' name='submit' class='btn' value='".$text['button-save']."'>\n";
|
|
echo " </td>\n";
|
|
echo " </tr>";
|
|
echo "</table>";
|
|
echo "<br><br>";
|
|
echo "</form>";
|
|
|
|
require_once "resources/footer.php";
|
|
?>
|