| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Plugin Name: WP Data Access |
| 5 |
* Plugin URI: https://wpdataaccess.com/ |
| 6 |
* Description: Local and remote data administration, publication and app development tool available directly from the WordPress dashboard. |
| 7 |
* Version: 5.0.1 |
| 8 |
* Author: Passionate Programmers |
| 9 |
* Author URI: https://wpdataaccess.com/ |
| 10 |
* Text Domain: wp-data-access |
| 11 |
* License: GPL-2.0+ |
| 12 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt |
| 13 |
* Domain Path: /languages |
| 14 |
* |
| 15 |
* |
| 16 |
* @package plugin |
| 17 |
* @author Peter Schulz |
| 18 |
* @since 1.0.0 |
| 19 |
*/ |
| 20 |
use WPDataAccess\WPDA ; |
| 21 |
if ( !defined( 'WPINC' ) ) { |
| 22 |
die; |
| 23 |
} |
| 24 |
if ( !defined( 'ABSPATH' ) ) { |
| 25 |
exit; |
| 26 |
} |
| 27 |
// Add freemius to WP Data Access |
| 28 |
|
| 29 |
if ( function_exists( 'wpda_freemius' ) ) { |
| 30 |
wpda_freemius()->set_basename( false, __FILE__ ); |
| 31 |
} else { |
| 32 |
// Load WPDataAccess namespace. |
| 33 |
require_once plugin_dir_path( __FILE__ ) . 'vendor/autoload.php'; |
| 34 |
// Create a helper function for easy SDK access |
| 35 |
function wpda_freemius() |
| 36 |
{ |
| 37 |
global $wpda_freemius ; |
| 38 |
|
| 39 |
if ( !isset( $wpda_freemius ) ) { |
| 40 |
// Include Freemius SDK |
| 41 |
require_once dirname( __FILE__ ) . '/freemius/start.php'; |
| 42 |
$wpda_freemius = fs_dynamic_init( array( |
| 43 |
'id' => '6189', |
| 44 |
'slug' => 'wp-data-access', |
| 45 |
'type' => 'plugin', |
| 46 |
'public_key' => 'pk_fc2d1714ca61c930152f6e326b575', |
| 47 |
'is_premium' => false, |
| 48 |
'premium_suffix' => 'Premium', |
| 49 |
'has_addons' => false, |
| 50 |
'has_paid_plans' => true, |
| 51 |
'trial' => array( |
| 52 |
'days' => 14, |
| 53 |
'is_require_payment' => false, |
| 54 |
), |
| 55 |
'menu' => array( |
| 56 |
'slug' => 'wpda', |
| 57 |
'contact' => false, |
| 58 |
'network' => true, |
| 59 |
), |
| 60 |
'is_live' => true, |
| 61 |
) ); |
| 62 |
} |
| 63 |
|
| 64 |
return $wpda_freemius; |
| 65 |
} |
| 66 |
|
| 67 |
// Init Freemius |
| 68 |
wpda_freemius(); |
| 69 |
// Signal that SDK was initiated |
| 70 |
do_action( 'wpda_freemius_loaded' ); |
| 71 |
// Change plugin settings info |
| 72 |
function wpda_row_meta( $links, $file ) |
| 73 |
{ |
| 74 |
|
| 75 |
if ( strpos( $file, plugin_basename( __FILE__ ) ) !== false ) { |
| 76 |
// Add settings link |
| 77 |
$settings_url = admin_url( 'options-general.php' ) . '?page=wpdataaccess'; |
| 78 |
$settings_link = "<a href='{$settings_url}'>Settings</a>"; |
| 79 |
array_push( $links, $settings_link ); |
| 80 |
} |
| 81 |
|
| 82 |
return $links; |
| 83 |
} |
| 84 |
|
| 85 |
add_filter( |
| 86 |
'plugin_row_meta', |
| 87 |
'wpda_row_meta', |
| 88 |
10, |
| 89 |
2 |
| 90 |
); |
| 91 |
/** |
| 92 |
* Activate plugin |
| 93 |
* |
| 94 |
* @author Peter Schulz |
| 95 |
* @since 1.0.0 |
| 96 |
*/ |
| 97 |
function activate_wp_data_access() |
| 98 |
{ |
| 99 |
require_once plugin_dir_path( __FILE__ ) . 'includes/class-wp-data-access-switch.php'; |
| 100 |
WP_Data_Access_Switch::activate(); |
| 101 |
} |
| 102 |
|
| 103 |
register_activation_hook( __FILE__, 'activate_wp_data_access' ); |
| 104 |
/** |
| 105 |
* Deactivate plugin |
| 106 |
* |
| 107 |
* @author Peter Schulz |
| 108 |
* @since 1.0.0 |
| 109 |
*/ |
| 110 |
function deactivate_wp_data_access() |
| 111 |
{ |
| 112 |
require_once plugin_dir_path( __FILE__ ) . 'includes/class-wp-data-access-switch.php'; |
| 113 |
WP_Data_Access_Switch::deactivate(); |
| 114 |
} |
| 115 |
|
| 116 |
register_deactivation_hook( __FILE__, 'deactivate_wp_data_access' ); |
| 117 |
/** |
| 118 |
* Check if database needs to be updated |
| 119 |
* |
| 120 |
* @author Peter Schulz |
| 121 |
* @since 1.5.2 |
| 122 |
*/ |
| 123 |
function wpda_update_db_check() |
| 124 |
{ |
| 125 |
if ( WPDataAccess\WPDA::OPTION_WPDA_VERSION[1] !== get_option( WPDataAccess\WPDA::OPTION_WPDA_VERSION[0] ) ) { |
| 126 |
activate_wp_data_access(); |
| 127 |
} |
| 128 |
} |
| 129 |
|
| 130 |
add_action( 'plugins_loaded', 'wpda_update_db_check' ); |
| 131 |
/** |
| 132 |
* Uninstall blog |
| 133 |
* |
| 134 |
* This functions is called when the plugin is uninstalled. The following actions are performed: |
| 135 |
* + Drop plugin tables (unless settings indicate not to) |
| 136 |
* + Delete plugin options from $wpdb->options (unless settings indicate not to) |
| 137 |
* |
| 138 |
* Actions are processed on the current blog and are repeated for every blog on a multisite installation. Must be |
| 139 |
* called from the dashboard (WP_UNINSTALL_PLUGIN defined). User must have the proper privileges (activate_plugins). |
| 140 |
* |
| 141 |
* @author Peter Schulz |
| 142 |
* @since 1.0.0 |
| 143 |
*/ |
| 144 |
function wpda_uninstall_blog() |
| 145 |
{ |
| 146 |
global $wpdb ; |
| 147 |
$drop_tables = get_option( 'wpda_uninstall_tables' ); |
| 148 |
|
| 149 |
if ( 'on' === $drop_tables ) { |
| 150 |
// Get all plugin table names (without WP prefix) |
| 151 |
$plugin_tables = WPDataAccess\WPDA::get_wpda_tables(); |
| 152 |
foreach ( $plugin_tables as $plugin_table ) { |
| 153 |
// Loop through plugin tables |
| 154 |
// Drop plugin table |
| 155 |
$wpdb->query( "DROP TABLE IF EXISTS {$plugin_table}" ); |
| 156 |
// Get plugin backup tables (if applicable) |
| 157 |
$query = "select table_name as table_name from information_schema.tables " . "where table_schema = '{$wpdb->dbname}' " . " and table_name like '{$plugin_table}_BACKUP_%'"; |
| 158 |
$backup_tables = $wpdb->get_results( $query, 'ARRAY_A' ); |
| 159 |
foreach ( $backup_tables as $backup_table ) { |
| 160 |
// Drop plugin backup table |
| 161 |
$wpdb->query( "DROP TABLE IF EXISTS {$backup_table['table_name']}" ); |
| 162 |
} |
| 163 |
} |
| 164 |
} |
| 165 |
|
| 166 |
$delete_options = get_option( 'wpda_uninstall_options' ); |
| 167 |
|
| 168 |
if ( 'on' === $delete_options ) { |
| 169 |
// Delete all options from wp_options. |
| 170 |
$wpdb->query( "\n\t\t\tDELETE FROM {$wpdb->options}\n\t\t\tWHERE option_name LIKE 'wpda_%'\n\t\t" ); |
| 171 |
// db call ok; no-cache ok. |
| 172 |
} |
| 173 |
|
| 174 |
} |
| 175 |
|
| 176 |
function wpda_uninstall() |
| 177 |
{ |
| 178 |
|
| 179 |
if ( is_multisite() ) { |
| 180 |
global $wpdb ; |
| 181 |
// Uninstall plugin for alll blogs one by one (will fail silently for blogs having no plugin tables/options). |
| 182 |
$blogids = $wpdb->get_col( "select blog_id from {$wpdb->blogs}" ); |
| 183 |
// db call ok; no-cache ok. |
| 184 |
foreach ( $blogids as $blog_id ) { |
| 185 |
// Uninstall blog. |
| 186 |
switch_to_blog( $blog_id ); |
| 187 |
wpda_uninstall_blog(); |
| 188 |
restore_current_blog(); |
| 189 |
} |
| 190 |
} else { |
| 191 |
// Uninstall on single site installation. |
| 192 |
wpda_uninstall_blog(); |
| 193 |
} |
| 194 |
|
| 195 |
WPDA::wpda_delete_content_folder(); |
| 196 |
} |
| 197 |
|
| 198 |
wpda_freemius()->add_action( 'after_uninstall', 'wpda_uninstall' ); |
| 199 |
// Add WP Data Access icon to freemius |
| 200 |
function wpda_freemius_icon() |
| 201 |
{ |
| 202 |
return dirname( __FILE__ ) . '/freemius/assets/img/wpda.png'; |
| 203 |
} |
| 204 |
|
| 205 |
wpda_freemius()->add_filter( 'plugin_icon', 'wpda_freemius_icon' ); |
| 206 |
// Handle freemius menu items |
| 207 |
function wpda_freemius_menu_visible( $is_visible, $submenu_id ) |
| 208 |
{ |
| 209 |
// support, account, contact, pricing |
| 210 |
if ( 'dashboard' === WPDA::get_option( WPDA::OPTION_PLUGIN_NAVIGATION ) ) { |
| 211 |
if ( $submenu_id === 'support' || $submenu_id === 'account' ) { |
| 212 |
$is_visible = false; |
| 213 |
} |
| 214 |
} |
| 215 |
return $is_visible; |
| 216 |
} |
| 217 |
|
| 218 |
wpda_freemius()->add_filter( |
| 219 |
'is_submenu_visible', |
| 220 |
'wpda_freemius_menu_visible', |
| 221 |
10, |
| 222 |
2 |
| 223 |
); |
| 224 |
/** |
| 225 |
* Start plugin |
| 226 |
* |
| 227 |
* @author Peter Schulz |
| 228 |
* @since 1.0.0 |
| 229 |
*/ |
| 230 |
function run_wp_data_access() |
| 231 |
{ |
| 232 |
require_once plugin_dir_path( __FILE__ ) . 'includes/class-wp-data-access.php'; |
| 233 |
$wpdataaccess = new WP_Data_Access(); |
| 234 |
$wpdataaccess->run(); |
| 235 |
} |
| 236 |
|
| 237 |
run_wp_data_access(); |
| 238 |
} |
| 239 |
|