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,15 +17,17 @@
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
//includes
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";
@ -46,6 +48,7 @@ if (
$language = new text; $language = new text;
$text = $language->get(); $text = $language->get();
//process the http post
if (sizeof($_POST) > 0) { if (sizeof($_POST) > 0) {
$do = $_POST['do']; $do = $_POST['do'];
@ -117,10 +120,11 @@ if (sizeof($_POST) > 0) {
} // end if } // end if
//include the header and set the title
require_once "resources/header.php"; require_once "resources/header.php";
$document['title'] = $text['title-upgrade']; $document['title'] = $text['title-upgrade'];
//show the content
echo "<b>".$text['header-upgrade']."</b>"; echo "<b>".$text['header-upgrade']."</b>";
echo "<br><br>"; echo "<br><br>";
echo $text['description-upgrade']; echo $text['description-upgrade'];
@ -131,11 +135,11 @@ 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";
@ -144,11 +148,11 @@ if (permission_exists("upgrade_source") && !is_dir("/usr/share/examples/fusionpb
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,11 +160,11 @@ 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";
@ -170,11 +174,11 @@ if (permission_exists("upgrade_schema")) {
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";
@ -183,11 +187,10 @@ if (permission_exists("upgrade_apps")) {
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,8 +202,7 @@ 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";
@ -209,11 +211,11 @@ if (permission_exists("menu_restore")) {
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";
@ -245,5 +247,6 @@ if ($_SESSION["schema"]["response"] != '') {
unset($_SESSION["schema"]["response"]); unset($_SESSION["schema"]["response"]);
} }
//include the footer
require_once "resources/footer.php"; require_once "resources/footer.php";
?> ?>