| Server IP : 87.229.120.60 / Your IP : 216.73.216.86 Web Server : Apache System : Linux outside 5.4.8_Algonet_ZeroMAC_0.9.4.8 #6 SMP Mon Feb 3 20:36:07 CET 2020 x86_64 User : server ( 1002) PHP Version : 8.3.20 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,curl_multi_exec,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/faktorteam/www/wp-content/plugins/maintenance/includes/ |
Upload File : |
<?php
add_action('admin_init', 'mtnc_version_check');
function mtnc_version_check()
{
$old_version = get_option('mtnc_db_version');
$options = get_option('maintenance_options');
$meta = get_option('maintenance_meta', array());
if (empty($meta) || sizeof($meta) < 2) {
$meta['first_version'] = MTNC_VERSION;
$meta['first_install'] = time();
if (!empty($old_version)) {
$meta['old_version'] = true;
} else {
$meta['old_version'] = false;
}
update_option('maintenance_meta', $meta);
}
if (empty($old_version) && false === $options) {
mtnc_install();
} elseif (empty($old_version) && !empty($options)) {
mtnc_update();
} elseif ((int) $old_version < MTNC_DB_VERSION) {
mtnc_update();
}
}
function mtnc_install()
{
$options = mtnc_get_plugin_options();
add_option('mtnc_db_version', MTNC_DB_VERSION);
add_option('maintenance_options', $options);
}
function mtnc_update()
{
$options = mtnc_get_plugin_options();
$settings = get_option('maintenance_options');
update_option('mtnc_db_version', MTNC_DB_VERSION);
foreach ($options as $key => $value) {
if (!isset($settings[$key])) {
$settings[$key] = $value;
}
}
update_option('maintenance_options', $options);
}