PluginProbe
Post Grid Gutenberg Blocks – PostX / 2.6.0
Post Grid Gutenberg Blocks – PostX v2.6.0
5.0.39 5.0.38 5.0.37 5.0.36 5.0.35 5.0.34 5.0.33 5.0.32 5.0.31 5.0.30 5.0.29 5.0.28 5.0.27 5.0.26 5.0.25 5.0.23 5.0.24 5.0.22 5.0.21 5.0.20 5.0.19 5.0.18 5.0.17 2.1.1 2.1.2 All 237 releases
ultimate-post / classes / Compatibility.php

Compatibility.php in Post Grid Gutenberg Blocks – PostX 2.6.0, at classes/Compatibility.php

96 lines 3.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Compatibility Action.
4 *
5 * @package ULTP\Notice
6 * @since v.1.1.0
7 */
8
9 namespace ULTP;
10
11 defined('ABSPATH') || exit;
12
13 /**
14 * Compatibility class.
15 */
16 class Compatibility{
17
18 /**
19 * Setup class.
20 *
21 * @since v.1.1.0
22 */
23 public function __construct(){
24 add_action( 'upgrader_process_complete', array($this, 'plugin_upgrade_completed'), 10, 2 );
25 }
26
27
28 /**
29 * Compatibility Class Run after Plugin Upgrade
30 *
31 * @since v.1.1.0
32 */
33 public function plugin_upgrade_completed( $upgrader_object, $options ) {
34 if( $options['action'] == 'update' && $options['type'] == 'plugin' && isset( $options['plugins'] ) ){
35 foreach( $options['plugins'] as $plugin ) {
36 if( $plugin == ULTP_BASE ) {
37 $set_settings = array(
38 'ultp_category' => 'false',
39 'ultp_templates' => 'true',
40 'ultp_elementor' => 'true',
41 'ultp_table_of_content' => 'true',
42 'post_grid_1' => 'yes',
43 'post_grid_2' => 'yes',
44 'post_grid_3' => 'yes',
45 'post_grid_4' => 'yes',
46 'post_grid_5' => 'yes',
47 'post_grid_6' => 'yes',
48 'post_grid_7' => 'yes',
49 'post_list_1' => 'yes',
50 'post_list_2' => 'yes',
51 'post_list_3' => 'yes',
52 'post_list_4' => 'yes',
53 'post_module_1' => 'yes',
54 'post_module_2' => 'yes',
55 'post_slider_1' => 'yes',
56 'heading' => 'yes',
57 'image' => 'yes',
58 'taxonomy' => 'yes',
59 'wrapper' => 'yes',
60 'news_ticker' => 'yes',
61 'archive_title' => 'yes'
62 );
63 $addon_data = ultimate_post()->get_setting();
64 foreach ($set_settings as $key => $value) {
65 if (!isset($addon_data[$key])) {
66 ultimate_post()->set_setting($key, $value);
67 }
68 }
69
70
71 // License Check And Active
72 if (defined('ULTP_PRO_VER')) {
73 $license = get_option( 'edd_ultp_license_key' );
74 $response = wp_remote_post(
75 'https://www.wpxpo.com',
76 array(
77 'timeout' => 15,
78 'sslverify' => false,
79 'body' => array(
80 'edd_action' => 'activate_license',
81 'license' => $license,
82 'item_id' => 181,
83 'url' => home_url()
84 )
85 )
86 );
87 if ( !is_wp_error( $response ) && 200 == wp_remote_retrieve_response_code( $response ) ) {
88 $license_data = json_decode( wp_remote_retrieve_body( $response ) );
89 update_option( 'edd_ultp_license_status', $license_data->license );
90 }
91 }
92 }
93 }
94 }
95 }
96 }