2012-06-04 16:58:40 +02:00
|
|
|
<?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>
|
2015-05-09 22:29:26 +02:00
|
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2015
|
2012-06-04 16:58:40 +02:00
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
|
|
|
|
require_once "root.php";
|
2013-07-06 08:03:27 +02:00
|
|
|
require_once "resources/require.php";
|
2013-07-06 07:50:55 +02:00
|
|
|
require_once "resources/check_auth.php";
|
2013-05-19 00:07:59 +02:00
|
|
|
if (permission_exists('menu_add') || permission_exists('menu_edit')) {
|
2012-06-04 16:58:40 +02:00
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-19 00:07:59 +02:00
|
|
|
//add multi-lingual support
|
2015-01-18 10:22:07 +01:00
|
|
|
$language = new text;
|
|
|
|
|
$text = $language->get();
|
2013-05-19 00:07:59 +02:00
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
//action add or update
|
|
|
|
|
if (isset($_REQUEST["id"])) {
|
|
|
|
|
$action = "update";
|
|
|
|
|
$menu_uuid = check_str($_REQUEST["id"]);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$action = "add";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//get http post variables and set them to php variables
|
|
|
|
|
if (count($_POST)>0) {
|
|
|
|
|
$menu_uuid = check_str($_POST["menu_uuid"]);
|
|
|
|
|
$menu_name = check_str($_POST["menu_name"]);
|
|
|
|
|
$menu_language = check_str($_POST["menu_language"]);
|
|
|
|
|
$menu_description = check_str($_POST["menu_description"]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
|
|
|
|
|
|
|
|
|
|
$msg = '';
|
|
|
|
|
if ($action == "update") {
|
|
|
|
|
$menu_uuid = check_str($_POST["menu_uuid"]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//check for all required data
|
2013-05-19 00:07:59 +02:00
|
|
|
//if (strlen($menu_name) == 0) { $msg .= $text['message-required'].$text['label-name']."<br>\n"; }
|
|
|
|
|
//if (strlen($menu_language) == 0) { $msg .= $text['message-required'].$text['label-language']."<br>\n"; }
|
|
|
|
|
//if (strlen($menu_description) == 0) { $msg .= $text['message-required'].$text['label-description']."<br>\n"; }
|
2012-06-04 16:58:40 +02:00
|
|
|
if (strlen($msg) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/header.php";
|
2013-07-06 08:21:12 +02:00
|
|
|
require_once "resources/persist_form_var.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "<div align='center'>\n";
|
|
|
|
|
echo "<table><tr><td>\n";
|
|
|
|
|
echo $msg."<br />";
|
|
|
|
|
echo "</td></tr></table>\n";
|
|
|
|
|
persistformvar($_POST);
|
|
|
|
|
echo "</div>\n";
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/footer.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//add or update the database
|
|
|
|
|
if ($_POST["persistformvar"] != "true") {
|
|
|
|
|
if ($action == "add") {
|
|
|
|
|
//create a new unique id
|
|
|
|
|
$menu_uuid = uuid();
|
|
|
|
|
|
|
|
|
|
//start a new menu
|
|
|
|
|
$sql = "insert into v_menus ";
|
|
|
|
|
$sql .= "(";
|
|
|
|
|
$sql .= "menu_uuid, ";
|
|
|
|
|
$sql .= "menu_name, ";
|
|
|
|
|
$sql .= "menu_language, ";
|
|
|
|
|
$sql .= "menu_description ";
|
|
|
|
|
$sql .= ")";
|
|
|
|
|
$sql .= "values ";
|
|
|
|
|
$sql .= "(";
|
|
|
|
|
$sql .= "'".$menu_uuid."', ";
|
|
|
|
|
$sql .= "'$menu_name', ";
|
|
|
|
|
$sql .= "'$menu_language', ";
|
|
|
|
|
$sql .= "'$menu_description' ";
|
|
|
|
|
$sql .= ")";
|
|
|
|
|
$db->exec(check_sql($sql));
|
|
|
|
|
unset($sql);
|
|
|
|
|
|
|
|
|
|
//add the default items in the menu
|
2013-07-06 09:13:36 +02:00
|
|
|
require_once "resources/classes/menu.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
$menu = new menu;
|
|
|
|
|
$menu->db = $db;
|
|
|
|
|
$menu->menu_uuid = $menu_uuid;
|
|
|
|
|
$menu->restore();
|
|
|
|
|
|
|
|
|
|
//redirect the user back to the main menu
|
2014-02-23 10:26:30 +01:00
|
|
|
$_SESSION["message"] = $text['message-add'];
|
|
|
|
|
header("Location: menu.php");
|
2012-06-04 16:58:40 +02:00
|
|
|
return;
|
|
|
|
|
} //if ($action == "add")
|
|
|
|
|
|
|
|
|
|
if ($action == "update") {
|
|
|
|
|
//update the menu
|
|
|
|
|
$sql = "update v_menus set ";
|
|
|
|
|
$sql .= "menu_name = '$menu_name', ";
|
|
|
|
|
$sql .= "menu_language = '$menu_language', ";
|
|
|
|
|
$sql .= "menu_description = '$menu_description' ";
|
|
|
|
|
$sql .= "where menu_uuid = '$menu_uuid'";
|
|
|
|
|
$db->exec(check_sql($sql));
|
|
|
|
|
unset($sql);
|
|
|
|
|
|
|
|
|
|
//redirect the user back to the main menu
|
2014-02-23 10:26:30 +01:00
|
|
|
$_SESSION["message"] = $text['message-update'];
|
|
|
|
|
header("Location: menu.php");
|
2012-06-04 16:58:40 +02:00
|
|
|
return;
|
|
|
|
|
} //if ($action == "update")
|
2013-05-19 00:07:59 +02:00
|
|
|
} //if ($_POST["persistformvar"] != "true")
|
2012-06-04 16:58:40 +02:00
|
|
|
} //(count($_POST)>0 && strlen($_POST["persistformvar"]) == 0)
|
|
|
|
|
|
|
|
|
|
//pre-populate the form
|
|
|
|
|
if (count($_GET)>0 && $_POST["persistformvar"] != "true") {
|
|
|
|
|
$menu_uuid = $_GET["id"];
|
|
|
|
|
$sql = "select * from v_menus ";
|
|
|
|
|
$sql .= "where menu_uuid = '$menu_uuid' ";
|
|
|
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
|
|
|
|
foreach ($result as &$row) {
|
|
|
|
|
$menu_uuid = $row["menu_uuid"];
|
|
|
|
|
$menu_name = $row["menu_name"];
|
|
|
|
|
$menu_language = $row["menu_language"];
|
|
|
|
|
$menu_description = $row["menu_description"];
|
|
|
|
|
break; //limit to 1 row
|
|
|
|
|
}
|
|
|
|
|
unset ($prep_statement);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//show the header
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/header.php";
|
2013-05-19 00:07:59 +02:00
|
|
|
if ($action == "update") {
|
2014-07-10 02:32:50 +02:00
|
|
|
$document['title'] = $text['title-menu-edit'];
|
2013-05-19 00:07:59 +02:00
|
|
|
}
|
|
|
|
|
if ($action == "add") {
|
2014-07-10 02:32:50 +02:00
|
|
|
$document['title'] = $text['title-menu-add'];
|
2013-05-19 00:07:59 +02:00
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
//show the content
|
|
|
|
|
echo "<form method='post' name='frm' action=''>\n";
|
2015-02-15 08:59:02 +01:00
|
|
|
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "<tr>\n";
|
|
|
|
|
if ($action == "add") {
|
2013-05-19 00:07:59 +02:00
|
|
|
echo "<td align='left' width='30%' nowrap='nowrap'><b>".$text['header-menu-add']."</b></td>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
if ($action == "update") {
|
2013-05-19 00:07:59 +02:00
|
|
|
echo "<td align='left' width='30%' nowrap='nowrap'><b>".$text['header-menu-edit']."</b></td>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
echo "<td width='70%' align='right'>\n";
|
2014-04-27 00:50:52 +02:00
|
|
|
echo " <input type='button' class='btn' name='' alt='".$text['button-back']."' onclick=\"window.location='menu.php'\" value='".$text['button-back']."'>\n";
|
2015-05-12 05:03:09 +02:00
|
|
|
if (permission_exists('menu_restore') && $action == "update" && $menu_uuid == 'b4750c3f-2a86-b00d-b7d0-345c14eca286') {
|
2013-05-19 00:07:59 +02:00
|
|
|
echo " <input type='button' class='btn' value='".$text['button-restore_default']."' onclick=\"document.location.href='menu_restore_default.php?menu_uuid=$menu_uuid&menu_language=$menu_language';\" />";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
2014-04-27 00:50:52 +02:00
|
|
|
echo " <input type='submit' name='submit' class='btn' value='".$text['button-save']."'>\n";
|
|
|
|
|
echo "</td>";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</tr>\n";
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td align='left' colspan='2'>\n";
|
2013-05-19 00:07:59 +02:00
|
|
|
if ($action == "update") {
|
|
|
|
|
echo $text['description-menu-edit'];
|
|
|
|
|
}
|
|
|
|
|
if ($action == "add") {
|
|
|
|
|
echo $text['description-menu-add'];
|
|
|
|
|
}
|
|
|
|
|
echo "<br /><br />\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
2014-06-21 09:04:04 +02:00
|
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
|
2015-02-15 07:50:00 +01:00
|
|
|
echo " ".$text['label-name']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <input class='formfld' type='text' name='menu_name' maxlength='255' value=\"$menu_name\">\n";
|
|
|
|
|
echo "<br />\n";
|
2013-05-19 00:07:59 +02:00
|
|
|
echo "\n";
|
|
|
|
|
echo $text['description-name']."</td>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
2014-06-21 09:04:04 +02:00
|
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
|
2015-02-15 07:50:00 +01:00
|
|
|
echo " ".$text['label-language']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <input class='formfld' type='text' name='menu_language' maxlength='255' value=\"$menu_language\">\n";
|
|
|
|
|
echo "<br />\n";
|
2013-05-19 00:07:59 +02:00
|
|
|
echo $text['description-language']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
2015-02-15 07:50:00 +01:00
|
|
|
echo " ".$text['label-description']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <input class='formfld' type='text' name='menu_description' maxlength='255' value=\"$menu_description\">\n";
|
|
|
|
|
echo "<br />\n";
|
2013-05-19 00:07:59 +02:00
|
|
|
echo $text['description-description']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
echo " <tr>\n";
|
|
|
|
|
echo " <td colspan='2' align='right'>\n";
|
|
|
|
|
if ($action == "update") {
|
2015-02-15 08:59:02 +01:00
|
|
|
echo " <input type='hidden' name='menu_uuid' value='$menu_uuid'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
2015-02-15 10:20:19 +01:00
|
|
|
echo " <br>";
|
2015-02-15 08:59:02 +01:00
|
|
|
echo " <input type='submit' name='submit' class='btn' value='".$text['button-save']."'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " </tr>";
|
|
|
|
|
echo "</table>";
|
2015-02-15 08:59:02 +01:00
|
|
|
echo "<br><br>";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</form>";
|
|
|
|
|
|
|
|
|
|
//show the menu items
|
|
|
|
|
require_once "core/menu/menu_item_list.php";
|
|
|
|
|
|
|
|
|
|
//include the footer
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/footer.php";
|
2013-07-29 19:22:34 +02:00
|
|
|
?>
|