mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-21 23:47:57 +00:00
555 lines
20 KiB
PHP
Executable File
555 lines
20 KiB
PHP
Executable File
<?php
|
|
if (!defined('sugarEntry') || !sugarEntry) {
|
|
die('Not A Valid Entry Point');
|
|
}
|
|
/**
|
|
*
|
|
* SugarCRM Community Edition is a customer relationship management program developed by
|
|
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
|
|
*
|
|
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
|
|
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU Affero General Public License version 3 as published by the
|
|
* Free Software Foundation with the addition of the following permission added
|
|
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
|
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
|
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License along with
|
|
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301 USA.
|
|
*
|
|
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
|
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
|
*
|
|
* The interactive user interfaces in modified source and object code versions
|
|
* of this program must display Appropriate Legal Notices, as required under
|
|
* Section 5 of the GNU Affero General Public License version 3.
|
|
*
|
|
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
|
* these Appropriate Legal Notices must retain the display of the "Powered by
|
|
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not
|
|
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
|
|
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
|
|
*/
|
|
|
|
|
|
|
|
require_once('modules/Administration/UpgradeWizardCommon.php');
|
|
require_once('modules/Configurator/Configurator.php');
|
|
function UWrebuild()
|
|
{
|
|
global $log;
|
|
$db = DBManagerFactory::getInstance();
|
|
$log->info('Deleting Relationship Cache. Relationships will automatically refresh.');
|
|
|
|
echo "
|
|
<div id='rrresult'></div>
|
|
<script>
|
|
var xmlhttp=false;
|
|
/*@cc_on @*/
|
|
/*@if (@_jscript_version >= 5)
|
|
// JScript gives us Conditional compilation, we can cope with old IE versions.
|
|
// and security blocked creation of the objects.
|
|
try {
|
|
xmlhttp = new ActiveXObject(\"Msxml2.XMLHTTP\");
|
|
} catch (e) {
|
|
try {
|
|
xmlhttp = new ActiveXObject(\"Microsoft.XMLHTTP\");
|
|
} catch (E) {
|
|
xmlhttp = false;
|
|
}
|
|
}
|
|
@end @*/
|
|
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
|
|
try {
|
|
xmlhttp = new XMLHttpRequest();
|
|
} catch (e) {
|
|
xmlhttp = false;
|
|
}
|
|
}
|
|
if (!xmlhttp && window.createRequest) {
|
|
try {
|
|
xmlhttp = window.createRequest();
|
|
} catch (e) {
|
|
xmlhttp = false;
|
|
}
|
|
}
|
|
xmlhttp.onreadystatechange = function() {
|
|
if(xmlhttp.readyState == 4) {
|
|
document.getElementById('rrresult').innerHTML = xmlhttp.responseText;
|
|
}
|
|
}
|
|
xmlhttp.open('GET', 'index.php?module=Administration&action=RebuildRelationship&to_pdf=true', true);
|
|
xmlhttp.send(null);
|
|
</script>";
|
|
|
|
$log->info('Rebuilding everything.');
|
|
require_once('ModuleInstall/ModuleInstaller.php');
|
|
$mi = new ModuleInstaller();
|
|
$mi->rebuild_all();
|
|
}
|
|
|
|
unset($_SESSION['rebuild_relationships']);
|
|
unset($_SESSION['rebuild_extensions']);
|
|
|
|
global $log, $db;
|
|
|
|
// process commands
|
|
if (!isset($_REQUEST['mode']) || ($_REQUEST['mode'] == "")) {
|
|
die($mod_strings['ERR_UW_NO_MODE']);
|
|
}
|
|
$mode = $_REQUEST['mode'];
|
|
|
|
|
|
if (!isset($_REQUEST['version'])) {
|
|
die($mod_strings['ERR_UW_NO_MODE']);
|
|
}
|
|
$version = $_REQUEST['version'];
|
|
|
|
if (!isset($_REQUEST['copy_count']) || ($_REQUEST['copy_count'] == "")) {
|
|
die($mod_strings['ERR_UW_NO_FILES']);
|
|
}
|
|
|
|
if (empty($_REQUEST['unzip_dir']) || $_REQUEST['unzip_dir'] == "." || $_REQUEST['unzip_dir'] == "..") {
|
|
die($mod_strings['ERR_UW_NO_TEMP_DIR']);
|
|
}
|
|
$unzip_dir = $base_tmp_upgrade_dir. "/". basename((string) $_REQUEST['unzip_dir']);
|
|
|
|
if (empty($_REQUEST['install_file'])) {
|
|
die($mod_strings['ERR_UW_NO_INSTALL_FILE']);
|
|
}
|
|
|
|
$install_file = hashToFile($_REQUEST['install_file']);
|
|
$install_type = getInstallType($install_file);
|
|
|
|
//from here on out, the install_file is used as the file path to copy or rename the physical file, so let's remove the stream wrapper if it's set
|
|
//and replace it with the proper upload location
|
|
if (strpos((string) $install_file, 'upload://') === 0) {
|
|
//get the upload location if it's set, or default to 'upload'
|
|
$upload_dir = empty($GLOBALS['sugar_config']['upload_dir']) ? 'upload' : rtrim($GLOBALS['sugar_config']['upload_dir'], '/\\');
|
|
|
|
//replace the wrapper in the file name with the directory
|
|
$install_file = str_replace('upload:/', $upload_dir, (string) $install_file);
|
|
$_REQUEST['install_file'] = $install_file;
|
|
}
|
|
|
|
$id_name = '';
|
|
if (isset($_REQUEST['id_name'])) {
|
|
$id_name = $_REQUEST['id_name'];
|
|
}
|
|
$s_manifest = '';
|
|
if (isset($_REQUEST['s_manifest'])) {
|
|
$s_manifest = $_REQUEST['s_manifest'];
|
|
}
|
|
$previous_version = '';
|
|
if (isset($_REQUEST['previous_version'])) {
|
|
$previous_version = $_REQUEST['previous_version'];
|
|
}
|
|
$previous_id = '';
|
|
if (isset($_REQUEST['previous_id'])) {
|
|
$previous_id = $_REQUEST['previous_id'];
|
|
}
|
|
if ($install_type != "module") {
|
|
if (!isset($_REQUEST['zip_from_dir']) || ($_REQUEST['zip_from_dir'] == "")) {
|
|
$zip_from_dir = ".";
|
|
} else {
|
|
$zip_from_dir = $_REQUEST['zip_from_dir'];
|
|
}
|
|
if (!isset($_REQUEST['zip_to_dir']) || ($_REQUEST['zip_to_dir'] == "")) {
|
|
$zip_to_dir = ".";
|
|
} else {
|
|
$zip_to_dir = $_REQUEST['zip_to_dir'];
|
|
}
|
|
}
|
|
$remove_tables = 'true';
|
|
if (isset($_REQUEST['remove_tables'])) {
|
|
$remove_tables = $_REQUEST['remove_tables'];
|
|
}
|
|
$overwrite_files = true;
|
|
if (isset($_REQUEST['radio_overwrite'])) {
|
|
$overwrite_files = (($_REQUEST['radio_overwrite'] == 'do_not_overwrite') ? false : true);
|
|
}
|
|
|
|
//rrs
|
|
$author = '';
|
|
$is_uninstallable = true;
|
|
$name = '';
|
|
$description = '';
|
|
|
|
if ($install_type == 'module') {
|
|
$is_uninstallable = $_REQUEST['is_uninstallable'];
|
|
$name = $_REQUEST['name'];
|
|
$description = $_REQUEST['description'];
|
|
}
|
|
|
|
|
|
$file_action = "";
|
|
$uh_status = "";
|
|
|
|
$rest_dir = remove_file_extension($install_file)."-restore";
|
|
|
|
$files_to_handle = array();
|
|
register_shutdown_function("rmdir_recursive", $unzip_dir);
|
|
|
|
if (((defined('MODULE_INSTALLER_PACKAGE_SCAN') && MODULE_INSTALLER_PACKAGE_SCAN)
|
|
|| !empty($GLOBALS['sugar_config']['moduleInstaller']['packageScan'])) && $install_type != 'patch') {
|
|
require_once('ModuleInstall/ModuleScanner.php');
|
|
$ms = new ModuleScanner();
|
|
$ms->scanPackage($unzip_dir);
|
|
if ($ms->hasIssues()) {
|
|
$ms->displayIssues();
|
|
sugar_cleanup(true);
|
|
}
|
|
}
|
|
|
|
//
|
|
// execute the PRE scripts
|
|
//
|
|
if ($install_type == 'patch' || $install_type == 'module') {
|
|
switch ($mode) {
|
|
case 'Install':
|
|
$file = "$unzip_dir/" . constant('SUGARCRM_PRE_INSTALL_FILE');
|
|
if (is_file($file)) {
|
|
print("{$mod_strings['LBL_UW_INCLUDING']}: $file <br>\n");
|
|
include($file);
|
|
pre_install();
|
|
}
|
|
break;
|
|
case 'Uninstall':
|
|
$file = "$unzip_dir/" . constant('SUGARCRM_PRE_UNINSTALL_FILE');
|
|
if (is_file($file)) {
|
|
print("{$mod_strings['LBL_UW_INCLUDING']}: $file <br>\n");
|
|
include($file);
|
|
pre_uninstall();
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
//
|
|
// perform the action
|
|
//
|
|
|
|
for ($iii = 0; $iii < $_REQUEST['copy_count']; $iii++) {
|
|
if (isset($_REQUEST["copy_" . $iii]) && ($_REQUEST["copy_" . $iii] != "")) {
|
|
$file_to_copy = $_REQUEST["copy_" . $iii];
|
|
$src_file = clean_path("$unzip_dir/$zip_from_dir/$file_to_copy");
|
|
|
|
$sugar_home_dir = getCwd();
|
|
$dest_file = clean_path("$sugar_home_dir/$zip_to_dir/$file_to_copy");
|
|
if ($zip_to_dir != '.') {
|
|
$rest_file = clean_path("$rest_dir/$zip_to_dir/$file_to_copy");
|
|
} else {
|
|
$rest_file = clean_path("$rest_dir/$file_to_copy");
|
|
}
|
|
|
|
switch ($mode) {
|
|
case "Install":
|
|
mkdir_recursive(dirname((string) $dest_file));
|
|
|
|
if ($install_type=="patch" && is_file($dest_file)) {
|
|
if (!is_dir(dirname((string) $rest_file))) {
|
|
mkdir_recursive(dirname((string) $rest_file));
|
|
}
|
|
|
|
copy($dest_file, $rest_file);
|
|
sugar_touch($rest_file, filemtime($dest_file));
|
|
}
|
|
|
|
if (!copy($src_file, $dest_file)) {
|
|
die($mod_strings['ERR_UW_COPY_FAILED'].$src_file.$mod_strings['LBL_TO'].$dest_file);
|
|
}
|
|
$uh_status = "installed";
|
|
break;
|
|
case "Uninstall":
|
|
if ($install_type=="patch" && is_file($rest_file)) {
|
|
copy($rest_file, $dest_file);
|
|
sugar_touch($dest_file, filemtime($rest_file));
|
|
} elseif (file_exists($dest_file) && !unlink($dest_file)) {
|
|
die($mod_strings['ERR_UW_REMOVE_FAILED'].$dest_file);
|
|
}
|
|
$uh_status = "uninstalled";
|
|
break;
|
|
default:
|
|
die("{$mod_strings['LBL_UW_OP_MODE']} '$mode' {$mod_strings['ERR_UW_NOT_RECOGNIZED']}.");
|
|
}
|
|
$files_to_handle[] = clean_path("$zip_to_dir/$file_to_copy");
|
|
}
|
|
}
|
|
|
|
switch ($install_type) {
|
|
case "langpack":
|
|
if (!isset($_REQUEST['new_lang_name']) || ($_REQUEST['new_lang_name'] == "")) {
|
|
die($mod_strings['ERR_UW_NO_LANG']);
|
|
}
|
|
if (!isset($_REQUEST['new_lang_desc']) || ($_REQUEST['new_lang_desc'] == "")) {
|
|
die($mod_strings['ERR_UW_NO_LANG_DESC']);
|
|
}
|
|
|
|
if ($mode == "Install" || $mode=="Enable") {
|
|
$sugar_config['languages'] = $sugar_config['languages'] + array( $_REQUEST['new_lang_name'] => $_REQUEST['new_lang_desc'] );
|
|
} else {
|
|
if ($mode == "Uninstall" || $mode=="Disable") {
|
|
$new_langs = array();
|
|
$old_langs = $sugar_config['languages'];
|
|
foreach ($old_langs as $key => $value) {
|
|
if ($key != $_REQUEST['new_lang_name']) {
|
|
$new_langs += array( $key => $value );
|
|
}
|
|
}
|
|
$sugar_config['languages'] = $new_langs;
|
|
|
|
$default_sugar_instance_lang = 'en_us';
|
|
if ($current_language == $_REQUEST['new_lang_name']) {
|
|
$_SESSION['authenticated_user_language'] =$default_sugar_instance_lang;
|
|
$lang_changed_string = $mod_strings['LBL_CURRENT_LANGUAGE_CHANGE'].$sugar_config['languages'][$default_sugar_instance_lang].'<br/>';
|
|
}
|
|
|
|
if ($sugar_config['default_language'] == $_REQUEST['new_lang_name']) {
|
|
$cfg = new Configurator();
|
|
$cfg->config['languages'] = $new_langs;
|
|
$cfg->config['default_language'] = $default_sugar_instance_lang;
|
|
$cfg->handleOverride();
|
|
$lang_changed_string .= $mod_strings['LBL_DEFAULT_LANGUAGE_CHANGE'].$sugar_config['languages'][$default_sugar_instance_lang].'<br/>';
|
|
}
|
|
}
|
|
}
|
|
ksort($sugar_config);
|
|
if (!write_array_to_file("sugar_config", $sugar_config, "config.php")) {
|
|
die($mod_strings['ERR_UW_CONFIG_FAILED']);
|
|
}
|
|
break;
|
|
case "module":
|
|
require_once("ModuleInstall/ModuleInstaller.php");
|
|
$mi = new ModuleInstaller();
|
|
switch ($mode) {
|
|
case "Install":
|
|
//here we can determine if this is an upgrade or a new version
|
|
if (!empty($previous_version)) {
|
|
$mi->install($unzip_dir, true, $previous_version);
|
|
} else {
|
|
$mi->install($unzip_dir);
|
|
}
|
|
|
|
$file = "$unzip_dir/" . constant('SUGARCRM_POST_INSTALL_FILE');
|
|
if (is_file($file)) {
|
|
print("{$mod_strings['LBL_UW_INCLUDING']}: $file <br>\n");
|
|
include($file);
|
|
post_install();
|
|
}
|
|
break;
|
|
case "Uninstall":
|
|
if ($remove_tables == 'false') {
|
|
$GLOBALS['mi_remove_tables'] = false;
|
|
} else {
|
|
$GLOBALS['mi_remove_tables'] = true;
|
|
}
|
|
$mi->uninstall($unzip_dir);
|
|
break;
|
|
case "Disable":
|
|
if (!$overwrite_files) {
|
|
$GLOBALS['mi_overwrite_files'] = false;
|
|
} else {
|
|
$GLOBALS['mi_overwrite_files'] = true;
|
|
}
|
|
$mi->disable($unzip_dir);
|
|
break;
|
|
case "Enable":
|
|
if (!$overwrite_files) {
|
|
$GLOBALS['mi_overwrite_files'] = false;
|
|
} else {
|
|
$GLOBALS['mi_overwrite_files'] = true;
|
|
}
|
|
$mi->enable($unzip_dir);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
$current_user->incrementETag("mainMenuETag");
|
|
break;
|
|
case "full":
|
|
// purposely flow into "case: patch"
|
|
case "patch":
|
|
switch ($mode) {
|
|
case 'Install':
|
|
$file = "$unzip_dir/" . constant('SUGARCRM_POST_INSTALL_FILE');
|
|
if (is_file($file)) {
|
|
print("{$mod_strings['LBL_UW_INCLUDING']}: $file <br>\n");
|
|
include($file);
|
|
post_install();
|
|
}
|
|
|
|
UWrebuild();
|
|
break;
|
|
case 'Uninstall':
|
|
$file = "$unzip_dir/" . constant('SUGARCRM_POST_UNINSTALL_FILE');
|
|
if (is_file($file)) {
|
|
print("{$mod_strings['LBL_UW_INCLUDING']}: $file <br>\n");
|
|
include($file);
|
|
post_uninstall();
|
|
}
|
|
|
|
if (is_dir($rest_dir)) {
|
|
rmdir_recursive($rest_dir);
|
|
}
|
|
|
|
UWrebuild();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
require("sugar_version.php");
|
|
$sugar_config['sugar_version'] = $sugar_version;
|
|
ksort($sugar_config);
|
|
|
|
if (!write_array_to_file("sugar_config", $sugar_config, "config.php")) {
|
|
die($mod_strings['ERR_UW_UPDATE_CONFIG']);
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
switch ($mode) {
|
|
case "Install":
|
|
$file_action = "copied";
|
|
// if error was encountered, script should have died before now
|
|
$new_upgrade = new UpgradeHistory();
|
|
//determine if this module has already been installed given the unique_key to
|
|
//identify the module
|
|
// $new_upgrade->checkForExisting($unique_key);
|
|
if (!empty($previous_id)) {
|
|
$new_upgrade->id = $previous_id;
|
|
$uh = new UpgradeHistory();
|
|
$uh->retrieve($previous_id);
|
|
if (is_file($uh->filename)) {
|
|
unlink($uh->filename);
|
|
}
|
|
}
|
|
$new_upgrade->filename = $install_file;
|
|
$new_upgrade->md5sum = md5_file($install_file);
|
|
$new_upgrade->type = $install_type;
|
|
$new_upgrade->version = $version;
|
|
$new_upgrade->status = "installed";
|
|
$new_upgrade->name = $name;
|
|
$new_upgrade->description = $description;
|
|
$new_upgrade->id_name = $id_name;
|
|
$new_upgrade->manifest = $s_manifest;
|
|
$new_upgrade->save();
|
|
|
|
//Check if we need to show a page for the user to finalize their install with.
|
|
if (is_file("$unzip_dir/manifest.php")) {
|
|
include("$unzip_dir/manifest.php");
|
|
if (!empty($manifest['post_install_url'])) {
|
|
$url_conf = $manifest['post_install_url'];
|
|
if (is_string($url_conf)) {
|
|
$url_conf = array('url' => $url_conf);
|
|
}
|
|
if (isset($url_conf['type']) && $url_conf['type'] == 'popup') {
|
|
echo '<script type="text/javascript">window.open("' . $url_conf['url']
|
|
. '","' . (empty($url_conf['name']) ? 'sugar_popup' : $url_conf['name']) . '","'
|
|
. 'height=' . (empty($url_conf['height']) ? '500' : $url_conf['height']) . ','
|
|
. 'width=' . (empty($url_conf['width']) ? '800' : $url_conf['width']) . '");</script>';
|
|
} else {
|
|
echo '<iframe src="' . $url_conf['url'] . '" '
|
|
. 'width="' . (empty($url_conf['width']) ? '100%' : $url_conf['width']) . '" '
|
|
. 'height="' . (empty($url_conf['height']) ? '500px' : $url_conf['height']) . '"></iframe>';
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
case "Uninstall":
|
|
$file_action = "removed";
|
|
$uh = new UpgradeHistory();
|
|
$the_md5 = md5_file($install_file);
|
|
$md5_matches = $uh->findByMd5($the_md5);
|
|
if ((is_countable($md5_matches) ? count($md5_matches) : 0) == 0) {
|
|
die("{$mod_strings['ERR_UW_NO_UPDATE_RECORD']} $install_file.");
|
|
}
|
|
foreach ($md5_matches as $md5_match) {
|
|
$md5_match->delete();
|
|
}
|
|
break;
|
|
case "Disable":
|
|
$file_action = "disabled";
|
|
$uh = new UpgradeHistory();
|
|
$the_md5 = md5_file($install_file);
|
|
$md5_matches = $uh->findByMd5($the_md5);
|
|
if ((is_countable($md5_matches) ? count($md5_matches) : 0) == 0) {
|
|
die("{$mod_strings['ERR_UW_NO_UPDATE_RECORD']} $install_file.");
|
|
}
|
|
foreach ($md5_matches as $md5_match) {
|
|
$md5_match->enabled = 0;
|
|
$md5_match->save();
|
|
}
|
|
break;
|
|
case "Enable":
|
|
$file_action = "enabled";
|
|
$uh = new UpgradeHistory();
|
|
$the_md5 = md5_file($install_file);
|
|
$md5_matches = $uh->findByMd5($the_md5);
|
|
if ((is_countable($md5_matches) ? count($md5_matches) : 0) == 0) {
|
|
die("{$mod_strings['ERR_UW_NO_UPDATE_RECORD']} $install_file.");
|
|
}
|
|
foreach ($md5_matches as $md5_match) {
|
|
$md5_match->enabled = 1;
|
|
$md5_match->save();
|
|
}
|
|
break;
|
|
}
|
|
|
|
// present list to user
|
|
?>
|
|
<form action="<?php print($form_action); ?>" method="post">
|
|
|
|
|
|
<?php
|
|
echo "<div>";
|
|
print(getUITextForType($install_type) . " ". getUITextForMode($mode) . " ". $mod_strings['LBL_UW_SUCCESSFULLY']);
|
|
echo "<br>";
|
|
echo "<br>";
|
|
print("<input type=submit value=\"{$mod_strings['LBL_UW_BTN_BACK_TO_MOD_LOADER']}\" /><br>");
|
|
echo "</div>";
|
|
echo "<br>";
|
|
if (isset($lang_changed_string)) {
|
|
print($lang_changed_string);
|
|
}
|
|
if ($install_type != "module" && $install_type != "langpack") {
|
|
if (count($files_to_handle) > 0) {
|
|
echo '<div style="text-align: left; cursor: hand; cursor: pointer; text-decoration: underline;" onclick=\'this.style.display="none"; toggleDisplay("more");\' id="all_text">' . SugarThemeRegistry::current()->getImage('advanced_search', '', null, null, ".gif", $mod_strings['LBL_ADVANCED_SEARCH']) . ' '.$mod_strings['LBL_UW_SHOW_DETAILS'].'</div><div id=\'more\' style=\'display: none\'>
|
|
<div style="text-align: left; cursor: hand; cursor: pointer; text-decoration: underline;" onclick=\'document.getElementById("all_text").style.display=""; toggleDisplay("more");\'>' . SugarThemeRegistry::current()->getImage('basic_search', '', null, null, ".gif", $mod_strings['LBL_BASIC_SEARCH']) .' '.$mod_strings['LBL_UW_HIDE_DETAILS'].'</div><br>';
|
|
print("{$mod_strings['LBL_UW_FOLLOWING_FILES']} $file_action:<br>\n");
|
|
print("<ul id=\"subMenu\">\n");
|
|
foreach ($files_to_handle as $file_to_copy) {
|
|
print("<li>$file_to_copy<br>\n");
|
|
}
|
|
print("</ul>\n");
|
|
echo '</div>';
|
|
} else {
|
|
if ($mode != 'Disable' && $mode !='Enable') {
|
|
print("{$mod_strings['LBL_UW_NO_FILES_SELECTED']} $file_action.<br>\n");
|
|
}
|
|
}
|
|
|
|
print($mod_strings['LBL_UW_UPGRADE_SUCCESSFUL']);
|
|
print("<input class='button' type=submit value=\"{$mod_strings['LBL_UW_BTN_BACK_TO_UW']}\" />\n");
|
|
}
|
|
?>
|
|
</form>
|
|
|
|
<?php
|
|
$GLOBALS['log']->info("Upgrade Wizard patches");
|
|
?>
|