Update index.php

Advanced -> Upgrade -Remove label tag as it broke the checkbox and description vertical alignment.
This commit is contained in:
FusionPBX 2016-09-10 17:26:14 -06:00 committed by GitHub
parent 6b999b247d
commit bc057ac1f5
1 changed files with 211 additions and 208 deletions

View File

@ -17,21 +17,23 @@
The Initial Developer of the Original Code is The Initial Developer of the Original Code is
Mark J Crane <markjcrane@fusionpbx.com> Mark J Crane <markjcrane@fusionpbx.com>
Portions created by the Initial Developer are Copyright (C) 2008-2015 Portions created by the Initial Developer are Copyright (C) 2008-2016
the Initial Developer. All Rights Reserved. the Initial Developer. All Rights Reserved.
Contributor(s): Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com> Mark J Crane <markjcrane@fusionpbx.com>
*/ */
set_time_limit(600); //sec (10 min) //set a timeout
set_time_limit(900); //15 minutes
include "root.php"; //includes
require_once "resources/require.php"; include "root.php";
require_once "resources/check_auth.php"; require_once "resources/require.php";
require_once "resources/check_auth.php";
//check the permission //check the permission
if ( if (
!permission_exists('upgrade_source') && !permission_exists('upgrade_source') &&
!permission_exists('upgrade_schema') && !permission_exists('upgrade_schema') &&
!permission_exists('upgrade_apps') && !permission_exists('upgrade_apps') &&
@ -40,13 +42,14 @@ if (
) { ) {
echo "access denied"; echo "access denied";
exit; exit;
} }
//add multi-lingual support //add multi-lingual support
$language = new text; $language = new text;
$text = $language->get(); $text = $language->get();
if (sizeof($_POST) > 0) { //process the http post
if (sizeof($_POST) > 0) {
$do = $_POST['do']; $do = $_POST['do'];
@ -115,40 +118,41 @@ if (sizeof($_POST) > 0) {
header("Location: ".PROJECT_PATH."/core/upgrade/index.php"); header("Location: ".PROJECT_PATH."/core/upgrade/index.php");
exit; exit;
} // end if } // end if
//include the header and set the title
require_once "resources/header.php";
$document['title'] = $text['title-upgrade'];
require_once "resources/header.php"; //show the content
$document['title'] = $text['title-upgrade']; echo "<b>".$text['header-upgrade']."</b>";
echo "<br><br>";
echo $text['description-upgrade'];
echo "<br><br>";
echo "<b>".$text['header-upgrade']."</b>"; echo "<form name='frm' method='post' action=''>\n";
echo "<br><br>";
echo $text['description-upgrade'];
echo "<br><br>";
echo "<form name='frm' method='post' action=''>\n"; if (permission_exists("upgrade_source") && !is_dir("/usr/share/examples/fusionpbx") && is_writeable($_SERVER["PROJECT_ROOT"]."/.git")) {
if (permission_exists("upgrade_source") && !is_dir("/usr/share/examples/fusionpbx") && is_writeable($_SERVER["PROJECT_ROOT"]."/.git")) {
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n"; echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n"; echo "<tr>\n";
echo " <td width='30%' class='vncell'>\n"; echo " <td width='30%' class='vncell' style='vertical-align:middle;'>\n";
echo " ".$text['label-upgrade_source']; echo " ".$text['label-upgrade_source'];
echo " </td>\n"; echo " </td>\n";
echo " <td width='70%' class='vtable' style='height: 50px;'>\n"; echo " <td width='70%' class='vtable' style='height: 50px;'>\n";
echo " <label for='do_source'><input type='checkbox' name='do[source]' id='do_source' value='1'> ".$text['description-upgrade_source']."</label>\n"; echo " <input type='checkbox' name='do[source]' id='do_source' value='1'> &nbsp;".$text['description-upgrade_source']."\n";
echo " </td>\n"; echo " </td>\n";
echo "</tr>\n"; echo "</tr>\n";
echo "</table>\n"; echo "</table>\n";
} }
if (permission_exists("upgrade_schema")) { if (permission_exists("upgrade_schema")) {
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n"; echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n"; echo "<tr>\n";
echo " <td width='30%' class='vncell'>\n"; echo " <td width='30%' class='vncell' style='vertical-align:middle;'>\n";
echo " ".$text['label-upgrade_schema']; echo " ".$text['label-upgrade_schema'];
echo " </td>\n"; echo " </td>\n";
echo " <td width='70%' class='vtable' style='height: 50px;'>\n"; echo " <td width='70%' class='vtable' style='height: 50px;'>\n";
echo " <label for='do_schema'><input type='checkbox' name='do[schema]' id='do_schema' value='1' onchange=\"$('#do_data_types').prop('checked', false); $('#tr_data_types').slideToggle('fast');\"> ".$text['description-upgrade_schema']."</label>\n"; echo " <input type='checkbox' name='do[schema]' id='do_schema' value='1' onchange=\"$('#do_data_types').prop('checked', false); $('#tr_data_types').slideToggle('fast');\"> &nbsp;".$text['description-upgrade_schema']."\n";
echo " </td>\n"; echo " </td>\n";
echo "</tr>\n"; echo "</tr>\n";
echo "</table>\n"; echo "</table>\n";
@ -156,38 +160,37 @@ if (permission_exists("upgrade_schema")) {
echo "<div id='tr_data_types' style='display: none;'>\n"; echo "<div id='tr_data_types' style='display: none;'>\n";
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n"; echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n"; echo "<tr>\n";
echo " <td width='30%' class='vncell'>\n"; echo " <td width='30%' class='vncell' style='vertical-align:middle;'>\n";
echo " ".$text['label-upgrade_data_types']; echo " ".$text['label-upgrade_data_types'];
echo " </td>\n"; echo " </td>\n";
echo " <td width='70%' class='vtable' style='height: 50px;'>\n"; echo " <td width='70%' class='vtable' style='height: 50px;'>\n";
echo " <label for='do_data_types'><input type='checkbox' name='do[data_types]' id='do_data_types' value='true'> ".$text['description-upgrade_data_types']."</label>\n"; echo " <input type='checkbox' name='do[data_types]' id='do_data_types' value='true'> &nbsp;".$text['description-upgrade_data_types']."\n";
echo " </td>\n"; echo " </td>\n";
echo "</tr>\n"; echo "</tr>\n";
echo "</table>\n"; echo "</table>\n";
echo "</div>\n"; echo "</div>\n";
} }
if (permission_exists("upgrade_apps")) { if (permission_exists("upgrade_apps")) {
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n"; echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n"; echo "<tr>\n";
echo " <td width='30%' class='vncell'>\n"; echo " <td width='30%' class='vncell' style='vertical-align:middle;'>\n";
echo " ".$text['label-upgrade_apps']; echo " ".$text['label-upgrade_apps'];
echo " </td>\n"; echo " </td>\n";
echo " <td width='70%' class='vtable' style='height: 50px;'>\n"; echo " <td width='70%' class='vtable' style='height: 50px;'>\n";
echo " <label for='do_apps'><input type='checkbox' name='do[apps]' id='do_apps' value='1'> ".$text['description-upgrade_apps']."</label>\n"; echo " <label for='do_apps'><input type='checkbox' name='do[apps]' id='do_apps' value='1'> &nbsp;".$text['description-upgrade_apps']."</label>\n";
echo " </td>\n"; echo " </td>\n";
echo "</tr>\n"; echo "</tr>\n";
echo "</table>\n"; echo "</table>\n";
} }
if (permission_exists("menu_restore")) { if (permission_exists("menu_restore")) {
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n"; echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n"; echo "<tr>\n";
echo " <td width='30%' class='vncell'>\n"; echo " <td width='30%' class='vncell' style='vertical-align:middle;'>\n";
echo " ".$text['label-upgrade_menu']; echo " ".$text['label-upgrade_menu'];
echo " </td>\n"; echo " </td>\n";
echo " <td width='70%' class='vtable' style='height: 50px;'>\n"; echo " <td width='70%' class='vtable' style='height: 50px;'>\n";
echo " <label for='do_menu'>";
echo "<input type='checkbox' name='do[menu]' id='do_menu' value='1' onchange=\"$('#sel_menu').fadeToggle('fast');\">"; echo "<input type='checkbox' name='do[menu]' id='do_menu' value='1' onchange=\"$('#sel_menu').fadeToggle('fast');\">";
echo "<select name='sel_menu' id='sel_menu' class='formfld' style='display: none; vertical-align: middle; margin-left: 5px;'>"; echo "<select name='sel_menu' id='sel_menu' class='formfld' style='display: none; vertical-align: middle; margin-left: 5px;'>";
$sql = "select * from v_menus "; $sql = "select * from v_menus ";
@ -199,33 +202,32 @@ if (permission_exists("menu_restore")) {
} }
unset ($sql, $result, $prep_statement); unset ($sql, $result, $prep_statement);
echo "</select>"; echo "</select>";
echo " ".$text['description-upgrade_menu']; echo " &nbsp;".$text['description-upgrade_menu'];
echo "</label>\n";
echo " </td>\n"; echo " </td>\n";
echo "</tr>\n"; echo "</tr>\n";
echo "</table>\n"; echo "</table>\n";
} }
if (permission_exists("group_edit")) { if (permission_exists("group_edit")) {
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n"; echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n"; echo "<tr>\n";
echo " <td width='30%' class='vncell'>\n"; echo " <td width='30%' class='vncell' style='vertical-align:middle;'>\n";
echo " ".$text['label-upgrade_permissions']; echo " ".$text['label-upgrade_permissions'];
echo " </td>\n"; echo " </td>\n";
echo " <td width='70%' class='vtable' style='height: 50px;'>\n"; echo " <td width='70%' class='vtable' style='height: 50px;'>\n";
echo " <label for='do_permissions'><input type='checkbox' name='do[permissions]' id='do_permissions' value='1'> ".$text['description-upgrade_permissions']."</label>\n"; echo " <input type='checkbox' name='do[permissions]' id='do_permissions' value='1'> &nbsp;".$text['description-upgrade_permissions']."\n";
echo " </td>\n"; echo " </td>\n";
echo "</tr>\n"; echo "</tr>\n";
echo "</table>\n"; echo "</table>\n";
} }
echo "<br>"; echo "<br>";
echo "<div style='text-align: right;'><input type='submit' class='btn' value='".$text['button-upgrade_execute']."'></div>"; echo "<div style='text-align: right;'><input type='submit' class='btn' value='".$text['button-upgrade_execute']."'></div>";
echo "<br><br>"; echo "<br><br>";
echo "</form>\n"; echo "</form>\n";
// output result of source update // output result of source update
if (sizeof($_SESSION["response_source_update"]) > 0) { if (sizeof($_SESSION["response_source_update"]) > 0) {
echo "<br />"; echo "<br />";
echo "<b>".$text['header-source_update_results']."</b>"; echo "<b>".$text['header-source_update_results']."</b>";
echo "<br /><br />"; echo "<br /><br />";
@ -234,16 +236,17 @@ if (sizeof($_SESSION["response_source_update"]) > 0) {
echo "</pre>"; echo "</pre>";
echo "<br /><br />"; echo "<br /><br />";
unset($_SESSION["response_source_update"]); unset($_SESSION["response_source_update"]);
} }
// output result of upgrade schema // output result of upgrade schema
if ($_SESSION["schema"]["response"] != '') { if ($_SESSION["schema"]["response"] != '') {
echo "<br />"; echo "<br />";
echo "<b>".$text['header-upgrade_schema_results']."</b>"; echo "<b>".$text['header-upgrade_schema_results']."</b>";
echo "<br /><br />"; echo "<br /><br />";
echo $_SESSION["schema"]["response"]; echo $_SESSION["schema"]["response"];
unset($_SESSION["schema"]["response"]); unset($_SESSION["schema"]["response"]);
} }
require_once "resources/footer.php"; //include the footer
require_once "resources/footer.php";
?> ?>