-
Notifications
You must be signed in to change notification settings - Fork 3
/
update.php
58 lines (47 loc) · 2.34 KB
/
update.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
$pluginversion = get_option('avcp_version_number');
//In questo blocco sono impostati i vari aggiornamenti ad alcuni campi del database che vanno modificati per poter eseguire la versione relativa all'aggiornamento stesso...
if (version_compare($pluginversion, "3.1", "<")) {
avcp_activate();
}
if (version_compare($pluginversion, "3.2", "<")) {
query_posts( array( 'post_type' => 'avcp', 'posts_per_page' => '-1') ); global $post;
if ( have_posts() ) : while ( have_posts() ) : the_post();
$tip_contraente = get_post_meta($post->ID, 'avcp_contraente', true);
if ($tip_contraente == '25-AFFIDAMENTO DIRETTO A SOCIETA') {
update_post_meta($post->ID, 'avcp_contraente', '25-AFFIDAMENTO DIRETTO A SOCIETA' RAGGRUPPATE/CONSORZIATE O CONTROLLATE NELLE CONCESSIONI DI LL.PP');
} else if ($tip_contraente == '24-AFFIDAMENTO DIRETTO A SOCIETA') {
update_post_meta($post->ID, 'avcp_contraente', '24-AFFIDAMENTO DIRETTO A SOCIETA' IN HOUSE');
}
endwhile; else:
endif;
creafilexml ('2013');
creafilexml ('2014');
}
if (version_compare($pluginversion, "4.2", "<")) {
global $current_user;
$user_id = $current_user->ID;
delete_user_meta($user_id, 'avcp_upgrade_3', 'true', true);
avcp_activate();
}
if (version_compare($pluginversion, "5.1", "<")) {
creafilexml('2013');
creafilexml('2014');
creafilexml('2015');
}
if (version_compare($pluginversion, "5.2", "<")) {
delete_option('avcp_showxml');
delete_option('avcp_tab_jqueryui');
delete_option('avcp_export');
}
if (version_compare($pluginversion, "6", "<")) {
avcp_activate();
require_once(plugin_dir_path(__FILE__) . 'utilities/update_6.php');
}
if (version_compare($pluginversion, "6.4", "<")) {
delete_option('avcp_showlove');
delete_option('avcp_enable_editor');
}
anac_add_log('Script di aggiornamento '.$pluginversion.' richiamato', 0);
?>