Work on the menu restore more.

This commit is contained in:
Mark Crane
2014-12-26 07:27:13 +00:00
parent b3751de936
commit 55bf6740eb
+17 -21
View File
@@ -24,31 +24,27 @@
Mark J Crane <markjcrane@fusionpbx.com> Mark J Crane <markjcrane@fusionpbx.com>
*/ */
if (!$included) { //check permissions
include "root.php"; include "root.php";
require_once "resources/require.php"; require_once "resources/require.php";
require_once "resources/check_auth.php"; require_once "resources/check_auth.php";
} if (permission_exists('menu_restore')) {
//access granted
}
else {
echo "access denied";
return;
}
if (permission_exists('menu_restore')) { //add multi-lingual support
//access granted
}
else {
echo "access denied";
return;
}
if (!$included) {
//add multi-lingual support
require_once "app_languages.php"; require_once "app_languages.php";
foreach($text as $key => $value) { foreach($text as $key => $value) {
$text[$key] = $value[$_SESSION['domain']['language']['code']]; $text[$key] = $value[$_SESSION['domain']['language']['code']];
} }
//get the http value and set as a php variable //get the http value and set as a php variable
$menu_uuid = check_str($_REQUEST["menu_uuid"]); $menu_uuid = check_str($_REQUEST["menu_uuid"]);
$menu_language = check_str($_REQUEST["menu_language"]); $menu_language = check_str($_REQUEST["menu_language"]);
}
//menu restore default //menu restore default
require_once "resources/classes/menu.php"; require_once "resources/classes/menu.php";
@@ -65,11 +61,11 @@ if (!$included) {
//unset the default template //unset the default template
$_SESSION["template_content"] = ''; $_SESSION["template_content"] = '';
//redirect
if (!$included) { if (!$included) {
//show a message to the user //show a message to the user
$_SESSION["message"] = $text['message-restore']; $_SESSION["message"] = $text['message-restore'];
header("Location: ".PROJECT_PATH."/core/menu/menu_edit.php?id=".$menu_uuid); header("Location: ".PROJECT_PATH."/core/menu/menu_edit.php?id=".$menu_uuid);
return; return;
} }
?> ?>