Example #1
0
     $PAGE->body = $PAGE->body . "<br/>";
     $PAGE->body = $PAGE->body . "<b>";
     $PAGE->body = $PAGE->body . getTranslation("Update Notes for version", $settings);
     $PAGE->body = $PAGE->body . " ";
     $PAGE->body = $PAGE->body . $next_version;
     $PAGE->body = $PAGE->body . "</b>";
     $update_notes = $UPDATE->notes();
     if (strlen($update_notes) > 0) {
         $PAGE->body = $PAGE->body . "<ul>";
         $PAGE->body = $PAGE->body . "<br/>";
         $PAGE->body = $PAGE->body . $update_notes;
         $PAGE->body = $PAGE->body . "</ul>";
     }
 } elseif (isset($_GET['page']) && intval($_GET['page']) == 2 && isset($_POST['btnSubmit'])) {
     // CALL THE UPDATE COMMANDS
     $UPDATE->execute();
     $old_version = $current_version;
     // UPDATE THE DATABASE VERSION NUMBER
     $sys_setting = new sys_setting();
     $sys_setting->get_from_hashrange("system", "version");
     $sys_setting->update(array("val" => $next_version));
     $database_version = $sys_setting->val;
     $current_version = $next_version;
     $title_text = getTranslation("Update from version", $settings);
     $title_text = $title_text . " ";
     $title_text = $title_text . $old_version;
     $title_text = $title_text . " ";
     $title_text = $title_text . getTranslation("to version", $settings);
     $title_text = $title_text . " ";
     $title_text = $title_text . $current_version;
     $title_text = $title_text . " ";
Example #2
0
<?php

// Include the update class.
require_once 'Update.class.php';
// Init the Update class.
$update = new Update('http://localhost/update/server/thisistheupdatefile.zip', 'http://localhost/update/server/version.ini');
// Check if a new version is available.
if ($update->checkVersion()) {
    // A new update is available.
    // Download and install.
    $update->execute();
} else {
    // The current system is up to date (no new version).
    echo '<h3>System is up to date!</h3>';
}
Example #3
0
<?php

/*
 * Tecflare Corporation
 * Copyright Tecflare Corporation
 * Provided by the Tecflare Corporation System
 * * Code has been scanned by styleci.io
 */
require_once 'functions/update.class.php';
// Init the Update class.
$update = new Update('http://tecflare.cu.cc/cdn-packages/latest.zip', 'http://tecflare.cu.cc/cdn-packages/version.ini');
// Check if a new version is available.
if ($update->checkVersion()) {
    $update->execute('../');
}