| 1 |
<?php |
| 2 |
/** |
| 3 |
* It includes the code for the backend. |
| 4 |
|
| 5 |
* @package Plugversions |
| 6 |
*/ |
| 7 |
defined( 'PLUGIN_REVISIONS_PLUGIN_DIR' ) || exit; // Exit if not accessed from Plugversions. |
| 8 |
|
| 9 |
if( wp_doing_ajax() ){ |
| 10 |
//* Include the Ajax admin file. |
| 11 |
require_once PLUGIN_REVISIONS_PLUGIN_DIR . '/admin/pr-ajax-admin.php'; |
| 12 |
} |
| 13 |
|
| 14 |
register_activation_hook( __FILE__, function() { |
| 15 |
/** |
| 16 |
* Actions triggered after plugin activation or after a new site of a multisite installation is created |
| 17 |
* |
| 18 |
* @since 0.0.1 |
| 19 |
*/ |
| 20 |
if( ! eos_plugin_revision_key() ){ |
| 21 |
update_site_option( 'plugin_revisions',array( 'time' => time() ) ); |
| 22 |
} |
| 23 |
} ); |
| 24 |
|
| 25 |
add_action( 'admin_head',function(){ |
| 26 |
/** |
| 27 |
* Add style to properly show the revisions on the page of plugins |
| 28 |
* |
| 29 |
* @since 0.0.1 |
| 30 |
*/ |
| 31 |
global $pagenow; |
| 32 |
if( $pagenow && 'plugins.php' === sanitize_text_field( $pagenow ) ){ |
| 33 |
?> |
| 34 |
<style id="plugin-revisions-css" type="text/css"> |
| 35 |
.plugin-revision-wrp{ |
| 36 |
position:relative |
| 37 |
} |
| 38 |
.plugin-revisions-vers{ |
| 39 |
display:none; |
| 40 |
position:absolute; |
| 41 |
<?php echo is_rtl() ? 'right' : 'left'; ?>:0; |
| 42 |
top:0 |
| 43 |
} |
| 44 |
.plugin-revision-wrp:hover .plugin-revisions-vers{ |
| 45 |
display:block; |
| 46 |
min-width:200px; |
| 47 |
min-width:max-content; |
| 48 |
background:#fff; |
| 49 |
margin-top:15px; |
| 50 |
padding:10px 10px; |
| 51 |
z-index:9 |
| 52 |
} |
| 53 |
.plugin-revision-wrp:hover .plugin-revisions-vers a{ |
| 54 |
display:block; |
| 55 |
border-bottom:1px dashed; |
| 56 |
margin-bottom:5px; |
| 57 |
background-image:url(<?php echo esc_url( PLUGIN_REVISIONS_PLUGIN_URL ); ?>/admin/assets/images/ajax-loader.gif ); |
| 58 |
background-position:-9999px -9999px; |
| 59 |
background-repeat:no-repeat; |
| 60 |
background-size:16px 16px |
| 61 |
} |
| 62 |
</style> |
| 63 |
<?php |
| 64 |
} |
| 65 |
} ); |
| 66 |
|
| 67 |
add_action( 'admin_footer',function(){ |
| 68 |
/** |
| 69 |
* Add JS to restore a revision via Ajax |
| 70 |
* This script is added to the plugins.php and plugin-editor.php pages. |
| 71 |
* |
| 72 |
* @since 0.0.1 |
| 73 |
*/ |
| 74 |
global $pagenow; |
| 75 |
if( $pagenow && 'plugins.php' === sanitize_text_field( $pagenow ) ){ |
| 76 |
wp_nonce_field( 'plugin_reviews_restore_version','plugin_reviews_restore_version' ); |
| 77 |
?> |
| 78 |
<style id="plugin-revisions-js-css" type="text/css"> |
| 79 |
.plugin-revision-processing{position:relative;cursor:wait;} |
| 80 |
.plugin-revision-processing:after{ |
| 81 |
content:' '; |
| 82 |
position:absolute; |
| 83 |
top:50%; |
| 84 |
left:50%; |
| 85 |
transform:translate(-50%,-50%); |
| 86 |
background-color:rgba(255,255,255,0.8); |
| 87 |
border-radius:50%; |
| 88 |
box-shadow:0 0 5px rgba(0,0,0,0.2); |
| 89 |
z-index:9999; |
| 90 |
background-size:16px 16px; |
| 91 |
background-image:url(<?php echo esc_url( PLUGIN_REVISIONS_PLUGIN_URL ); ?>/admin/assets/images/ajax-loader.gif ); |
| 92 |
background-position:center center; |
| 93 |
background-repeat:no-repeat; |
| 94 |
width:16px; |
| 95 |
height:16px; |
| 96 |
display:block; |
| 97 |
opacity:1 |
| 98 |
} |
| 99 |
</style> |
| 100 |
<script id="plugin-revisions-js"> |
| 101 |
function eos_plugin_revisions(){ |
| 102 |
var as = document.getElementsByClassName('plugin-revision-action'),n=0,req = new XMLHttpRequest(),fd=new FormData(),nonce=document.getElementById('plugin_reviews_restore_version').value; |
| 103 |
for(n;n<as.length;++n){ |
| 104 |
as[n].addEventListener('click',function(e){ |
| 105 |
e.preventDefault(); |
| 106 |
this.closest('td').classList.add('plugin-revision-processing'); |
| 107 |
this.style.backgroundPosition = 'center center'; |
| 108 |
for(var k=0;k<as.length;++k){ |
| 109 |
as[k].style.pointerEvents = 'none'; |
| 110 |
} |
| 111 |
fd.append("dir",this.dataset.dir); |
| 112 |
fd.append("parent_plugin",this.dataset.parent_plugin); |
| 113 |
fd.append("nonce",nonce); |
| 114 |
req.open("POST","<?php echo esc_js( admin_url( 'admin-ajax.php' ) ); ?>" + '?action=eos_plugin_reviews_restore_version',true); |
| 115 |
req.send(fd); |
| 116 |
return false; |
| 117 |
}); |
| 118 |
} |
| 119 |
req.onload = function(e) { |
| 120 |
for(n;n<as.length;++n){ |
| 121 |
as[n].style.backgroundPosition = '-9999px -9999px'; |
| 122 |
} |
| 123 |
if(this.readyState === 4) { |
| 124 |
window.location.reload(); |
| 125 |
} |
| 126 |
else{ |
| 127 |
alert('Something went wrong!'); |
| 128 |
} |
| 129 |
return false; |
| 130 |
}; |
| 131 |
return false; |
| 132 |
} |
| 133 |
eos_plugin_revisions(); |
| 134 |
</script> |
| 135 |
<?php |
| 136 |
} |
| 137 |
if( $pagenow && 'plugin-editor.php' === sanitize_text_field( $pagenow ) ){ |
| 138 |
$key = eos_plugin_revision_key(); |
| 139 |
?> |
| 140 |
<script id="plugin-revisions-file-editor-js"> |
| 141 |
function eos_plugin_revisions_fild_editor(){ |
| 142 |
var os=document.getElementById('plugin').getElementsByTagName('option'),n=0,ver=''; |
| 143 |
for(n;n<os.length;++n){ |
| 144 |
if(os[n].value.indexOf("<?php echo esc_js( $key ); ?>") > 0){ |
| 145 |
os[n].innerHTML += ' ' + os[n].value.split('-ver-')[0].split('-')[2]; |
| 146 |
} |
| 147 |
} |
| 148 |
} |
| 149 |
eos_plugin_revisions_fild_editor(); |
| 150 |
</script> |
| 151 |
<?php |
| 152 |
} |
| 153 |
} ); |
| 154 |
|
| 155 |
/** |
| 156 |
* Remove all plugin revisions |
| 157 |
* This function removes all revisions of a specific plugin or all plugins if no plugin name is provided. |
| 158 |
* |
| 159 |
* @since 0.0.1 |
| 160 |
*/ |
| 161 |
function eos_plugin_revisions_remove_versions( $N = false,$plugin_name = false ){ |
| 162 |
$key = eos_plugin_revision_key(); |
| 163 |
$all_dirs = eos_plugin_revisions_scandir( dirname( PLUGIN_REVISIONS_PLUGIN_DIR ) ); |
| 164 |
global $wp_filesystem; |
| 165 |
if( empty( $wp_filesystem ) ){ |
| 166 |
require_once ABSPATH . 'wp-admin/includes/file.php'; |
| 167 |
WP_Filesystem(); |
| 168 |
} |
| 169 |
if( $all_dirs && !empty( $all_dirs ) ){ |
| 170 |
foreach( $all_dirs as $all_dir ){ |
| 171 |
if( substr( $all_dir,-strlen( $plugin_name ),strlen( $plugin_name ) ) !== $plugin_name ){ |
| 172 |
unset( $all_dirs[array_search( $all_dir,$all_dirs )] ); |
| 173 |
} |
| 174 |
} |
| 175 |
$n = 0; |
| 176 |
foreach( $all_dirs as $dir ){ |
| 177 |
if( false !== strpos( $dir,'pr-'.$key.'-' ) ){ |
| 178 |
if( $N && $n < ( count( $all_dirs ) - absint( $N ) ) ){ |
| 179 |
$result = $wp_filesystem->delete( dirname( PLUGIN_REVISIONS_PLUGIN_DIR ).'/'.$dir,true ); |
| 180 |
} |
| 181 |
} |
| 182 |
++$n; |
| 183 |
} |
| 184 |
} |
| 185 |
} |
| 186 |
|
| 187 |
/** |
| 188 |
* Remove all revisions of all the plugins |
| 189 |
* |
| 190 |
* @since 0.0.1 |
| 191 |
*/ |
| 192 |
function eos_plugin_revisions_remove_all_versions(){ |
| 193 |
$key = eos_plugin_revision_key(); |
| 194 |
$all_dirs = eos_plugin_revisions_scandir( dirname( PLUGIN_REVISIONS_PLUGIN_DIR ) ); |
| 195 |
global $wp_filesystem; |
| 196 |
if( empty( $wp_filesystem ) ){ |
| 197 |
require_once ABSPATH . 'wp-admin/includes/file.php'; |
| 198 |
WP_Filesystem(); |
| 199 |
} |
| 200 |
if( $all_dirs && !empty( $all_dirs ) ){ |
| 201 |
foreach( $all_dirs as $dir ){ |
| 202 |
if( false !== strpos( $dir,'pr-'.$key.'-' ) ){ |
| 203 |
$result = $wp_filesystem->delete( dirname( PLUGIN_REVISIONS_PLUGIN_DIR ).'/'.$dir,true ); |
| 204 |
} |
| 205 |
} |
| 206 |
} |
| 207 |
} |
| 208 |
|
| 209 |
/** |
| 210 |
* Revisions scandir |
| 211 |
* This function scans the plugin revisions directory and returns an array of files sorted by modification time. |
| 212 |
* |
| 213 |
* @since 0.0.1 |
| 214 |
*/ |
| 215 |
function eos_plugin_revisions_scandir( $dir ) { |
| 216 |
$ignored = array('.', '..', '.svn', '.htaccess'); |
| 217 |
$files = array(); |
| 218 |
foreach( scandir( $dir ) as $file ){ |
| 219 |
if( in_array( $file,$ignored ) ) continue; |
| 220 |
$files[$file] = filemtime( $dir.'/'.$file ); |
| 221 |
} |
| 222 |
asort( $files ); |
| 223 |
$files = array_keys( $files ); |
| 224 |
return ( $files ) ? $files : false; |
| 225 |
} |
| 226 |
|
| 227 |
add_action( 'admin_init', 'eos_pv_restore_revision_links' ); |
| 228 |
/** |
| 229 |
* Add links to restore previous revisions from zipped plugins. |
| 230 |
* This function initializes the restoring link functionality for plugin revisions. |
| 231 |
* |
| 232 |
* @since 0.0.6 |
| 233 |
*/ |
| 234 |
function eos_pv_restore_revision_links() { |
| 235 |
require_once PLUGIN_REVISIONS_PLUGIN_DIR . '/admin/classes/class-plugversions-restoring-link.php'; |
| 236 |
$link = new PlugVersions_Restoring_Link(); |
| 237 |
} |
| 238 |
|
| 239 |
|
| 240 |
/** |
| 241 |
* Backup the plugin before update. |
| 242 |
* This filter allows you to catch all possible update scenarios, including bulk and manual replacements, as well as Ajax updates. |
| 243 |
* |
| 244 |
* @param string $source Plugin source path. |
| 245 |
* @param string $remote_source Plugin remote source path. |
| 246 |
* @param object $upgrader Upgrader object. |
| 247 |
* @param array $hook_extra Hook extra data. |
| 248 |
* @return string |
| 249 |
* |
| 250 |
* @author Vincenzo Casu. |
| 251 |
*/ |
| 252 |
function eos_plugin_unversal_backup( $source, $remote_source, $upgrader, $hook_extra ) { |
| 253 |
// Load get_plugin_data() if not exists. |
| 254 |
if ( ! function_exists( 'get_plugin_data' ) ) { |
| 255 |
require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
| 256 |
} |
| 257 |
|
| 258 |
// Get plugins to backup. |
| 259 |
$plugins_to_backup = array(); |
| 260 |
|
| 261 |
if ( ! empty( $hook_extra['plugins'] ) && is_array( $hook_extra['plugins'] ) ) { |
| 262 |
// Bulk update (hook_extra['plugins']). |
| 263 |
$plugins_to_backup = $hook_extra['plugins']; |
| 264 |
} elseif ( ! empty( $hook_extra['plugin'] ) ) { |
| 265 |
// Single AJAX update (hook_extra['plugin']). |
| 266 |
$plugins_to_backup = array( $hook_extra['plugin'] ); |
| 267 |
} elseif ( ! empty( $hook_extra['type'] ) && $hook_extra['type'] === 'plugin' |
| 268 |
&& ! empty( $hook_extra['action'] ) |
| 269 |
&& in_array( $hook_extra['action'], array( 'update', 'install' ), true ) ) { |
| 270 |
// Fallback “replace from ZIP” or other plugin-based cases. |
| 271 |
|
| 272 |
// Get slug from source. |
| 273 |
$slug = basename( $source ); |
| 274 |
$all = get_plugins( '/' . $slug ); |
| 275 |
|
| 276 |
if ( ! empty( $all ) ) { |
| 277 |
$main_file = key( $all ); |
| 278 |
$plugins_to_backup[] = $slug . '/' . $main_file; |
| 279 |
} else { |
| 280 |
// If no plugins found, return the source. |
| 281 |
return $source; |
| 282 |
} |
| 283 |
} else { |
| 284 |
// No plugins to backup. |
| 285 |
return $source; |
| 286 |
} |
| 287 |
|
| 288 |
// Preparing Filesystem & Upgrader. |
| 289 |
if ( ! class_exists( 'WP_Upgrader' ) ) { |
| 290 |
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
| 291 |
} |
| 292 |
|
| 293 |
global $wp_filesystem; |
| 294 |
if ( empty( $wp_filesystem ) ) { |
| 295 |
require_once ABSPATH . 'wp-admin/includes/file.php'; |
| 296 |
WP_Filesystem(); |
| 297 |
} |
| 298 |
|
| 299 |
$key = eos_plugin_revision_key(); |
| 300 |
if ( ! $key ) { |
| 301 |
return $source; |
| 302 |
} |
| 303 |
foreach ( $plugins_to_backup as $plugin_file ) { |
| 304 |
$plugin_dir = WP_PLUGIN_DIR . '/' . dirname( $plugin_file ); |
| 305 |
$full_path = WP_PLUGIN_DIR . '/' . $plugin_file; |
| 306 |
if ( ! file_exists( $full_path ) ) { |
| 307 |
continue; |
| 308 |
} |
| 309 |
|
| 310 |
// Metadata & version. |
| 311 |
$plugin_data = get_plugin_data( $full_path ); |
| 312 |
$version = $plugin_data['Version']; |
| 313 |
$slug = dirname( $plugin_file ); |
| 314 |
$zip_dirname = 'pr-' . $key . '-' . sanitize_option( 'upload_path', $version ) . '-ver-' . $slug; |
| 315 |
|
| 316 |
// Base dir & Backup destination. |
| 317 |
$base_dir = plugin_dir_path( $full_path ); |
| 318 |
$backup_dir = trailingslashit( str_replace( $slug, $zip_dirname, $base_dir ) ); |
| 319 |
// Make Backup dir and move plugin files into it. |
| 320 |
if ( ! $wp_filesystem->is_dir( $backup_dir ) ) { |
| 321 |
$wp_filesystem->mkdir( $backup_dir ); |
| 322 |
} |
| 323 |
if ( $wp_filesystem->is_dir( $backup_dir ) ) { |
| 324 |
copy_dir( $plugin_dir, $backup_dir ); |
| 325 |
$zip_file = $zip_dirname . '.zip'; |
| 326 |
// Create a zip file of the plugin. |
| 327 |
|
| 328 |
if ( eos_pv_create_zip_pclzip( $backup_dir, $zip_file ) ) { |
| 329 |
$wp_filesystem->delete( untrailingslashit( $backup_dir ), true ); |
| 330 |
} |
| 331 |
|
| 332 |
// Remove old versions of the plugin. |
| 333 |
eos_plugin_revisions_remove_versions( |
| 334 |
apply_filters( 'max_plugin_revisions', 4 ), |
| 335 |
$slug |
| 336 |
); |
| 337 |
} |
| 338 |
} |
| 339 |
|
| 340 |
return $source; |
| 341 |
} |
| 342 |
add_filter( 'upgrader_source_selection', 'eos_plugin_unversal_backup', 10, 4 ); |
| 343 |
|
| 344 |
/** |
| 345 |
* Rollback WordPress core to a specific version. |
| 346 |
* This function allows you to rollback the WordPress core to a specified version. |
| 347 |
* It downloads the specified version, unzips it, and replaces the current core files, |
| 348 |
* while preserving the wp-content directory and wp-config.php file. |
| 349 |
* |
| 350 |
* @param string $version The version of WordPress to rollback to. Default is '6.4.3'. |
| 351 |
* @return bool|WP_Error Returns true on success or WP_Error on failure. |
| 352 |
* |
| 353 |
* @since 1.0.0 |
| 354 |
*/ |
| 355 |
function eos_pv_rollback_wordpress_core($version) { |
| 356 |
if ( ! current_user_can('update_core') ) { |
| 357 |
wp_die( esc_html__( 'You are not allowed to update the core.', 'plugversions' ) ); |
| 358 |
} |
| 359 |
|
| 360 |
require_once ABSPATH . 'wp-admin/includes/file.php'; |
| 361 |
require_once ABSPATH . 'wp-admin/includes/misc.php'; |
| 362 |
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
| 363 |
require_once ABSPATH . 'wp-admin/includes/update.php'; |
| 364 |
|
| 365 |
WP_Filesystem(); |
| 366 |
global $wp_filesystem; |
| 367 |
|
| 368 |
// Put site in maintenance mode |
| 369 |
$maintenance_string = '<?php $upgrading = ' . time() . '; ?>'; |
| 370 |
$wp_filesystem->put_contents(ABSPATH . '.maintenance', $maintenance_string, FS_CHMOD_FILE); |
| 371 |
|
| 372 |
// Download WordPress version zip |
| 373 |
$zip_url = "https://wordpress.org/wordpress-{$version}.zip"; |
| 374 |
$tmp_file = download_url($zip_url); |
| 375 |
|
| 376 |
if ( is_wp_error($tmp_file) ) { |
| 377 |
$wp_filesystem->delete(ABSPATH . '.maintenance'); |
| 378 |
return new WP_Error('download_failed', 'Failed to download WordPress version.'); |
| 379 |
} |
| 380 |
|
| 381 |
// Unzip into temp folder |
| 382 |
$unzip_dir = WP_TEMP_DIR . "wordpress-rollback-{$version}"; |
| 383 |
$result = unzip_file($tmp_file, $unzip_dir); |
| 384 |
unlink($tmp_file); // Remove zip file |
| 385 |
|
| 386 |
if ( is_wp_error($result) ) { |
| 387 |
$wp_filesystem->delete(ABSPATH . '.maintenance'); |
| 388 |
return $result; |
| 389 |
} |
| 390 |
|
| 391 |
// Copy files from the unzipped wordpress/ directory |
| 392 |
$source = trailingslashit($unzip_dir) . 'wordpress'; |
| 393 |
$dest = ABSPATH; |
| 394 |
|
| 395 |
$items = $wp_filesystem->dirlist($source); |
| 396 |
foreach ($items as $item => $details) { |
| 397 |
if ($item === 'wp-content' || $item === 'wp-config.php') { |
| 398 |
continue; // Skip user files |
| 399 |
} |
| 400 |
$source_path = trailingslashit($source) . $item; |
| 401 |
$dest_path = trailingslashit($dest) . $item; |
| 402 |
|
| 403 |
// Remove existing file or folder |
| 404 |
if ($wp_filesystem->exists($dest_path)) { |
| 405 |
$wp_filesystem->delete($dest_path, true); |
| 406 |
} |
| 407 |
|
| 408 |
// Copy new one |
| 409 |
$wp_filesystem->copy($source_path, $dest_path, true, FS_CHMOD_FILE); |
| 410 |
} |
| 411 |
|
| 412 |
// Cleanup |
| 413 |
$wp_filesystem->delete($unzip_dir, true); |
| 414 |
$wp_filesystem->delete(ABSPATH . '.maintenance'); |
| 415 |
|
| 416 |
return true; |
| 417 |
} |
| 418 |
|
| 419 |
add_action('admin_init', function() { |
| 420 |
/** |
| 421 |
* Handle rollback request for WordPress core. |
| 422 |
* This function checks if the user has permission to update the core, |
| 423 |
* verifies the nonce, and processes the rollback request. |
| 424 |
* |
| 425 |
* @since 1.0.0 |
| 426 |
*/ |
| 427 |
|
| 428 |
if (isset($_GET['rollback_wp']) && current_user_can('update_core') && check_admin_referer('eos_pv_core_rollback_nonce')) { |
| 429 |
$version = sanitize_text_field($_GET['rollback_wp']); |
| 430 |
// Validate version format |
| 431 |
// Example: 6.4.3 |
| 432 |
// Ensure it matches the expected format of major.minor.patch |
| 433 |
// This regex checks for three groups of digits separated by dots. |
| 434 |
if (!preg_match('/^\d+\.\d+\.\d+$/', $version)) { |
| 435 |
wp_die(esc_html__('Invalid version format.', 'plugversions')); |
| 436 |
} |
| 437 |
|
| 438 |
// Perform the rollback |
| 439 |
$result = eos_pv_rollback_wordpress_core( $version ); |
| 440 |
if (is_wp_error($result)) { |
| 441 |
echo 'Error: ' . $result->get_error_message(); |
| 442 |
} else { |
| 443 |
esc_html_e( 'Rollback completed. Please manually check your site.', 'plugversions' ); |
| 444 |
} |
| 445 |
exit; |
| 446 |
} |
| 447 |
}); |
| 448 |
|
| 449 |
add_action('upgrader_process_complete', function ($upgrader, $hook_extra) { |
| 450 |
/** |
| 451 |
* Save the current WordPress core version after an update. |
| 452 |
* This function saves the current WordPress version to an option after a core update. |
| 453 |
* It prevents duplicates and limits the saved versions to the last 3. |
| 454 |
* |
| 455 |
* @param WP_Upgrader $upgrader The upgrader instance. |
| 456 |
* @param array $hook_extra Extra data passed to the hook. |
| 457 |
* |
| 458 |
* @since 1.0.0 |
| 459 |
*/ |
| 460 |
|
| 461 |
// Check if this is a core update |
| 462 |
if ( ! is_a( $upgrader, 'Core_Upgrader' ) || ! isset( $hook_extra['type'], $hook_extra['action'] ) ) { |
| 463 |
return; |
| 464 |
} |
| 465 |
|
| 466 |
// Check if the action is an update |
| 467 |
// and the type is core. |
| 468 |
// This ensures that we only save versions after a core update. |
| 469 |
if ( |
| 470 |
isset($hook_extra['type'], $hook_extra['action']) && |
| 471 |
$hook_extra['type'] === 'core' && |
| 472 |
$hook_extra['action'] === 'update' |
| 473 |
) { |
| 474 |
$current_version = get_bloginfo('version'); |
| 475 |
$option_name = 'eos_pv_core_versions'; |
| 476 |
|
| 477 |
// Get existing saved versions |
| 478 |
$saved_versions = get_option($option_name, []); |
| 479 |
|
| 480 |
// Prevent duplicates |
| 481 |
if (!in_array($current_version, $saved_versions, true)) { |
| 482 |
array_unshift($saved_versions, $current_version); // Add to beginning |
| 483 |
} |
| 484 |
|
| 485 |
// Optional: limit to last 3 versions |
| 486 |
$saved_versions = array_slice($saved_versions, 0, 3); |
| 487 |
|
| 488 |
update_option($option_name, $saved_versions); |
| 489 |
} |
| 490 |
}, 10, 2); |
| 491 |
|
| 492 |
add_action('admin_notices', function () { |
| 493 |
return; // Disable admin notices for now, as the core rollback functionality is still not ready. |
| 494 |
/** |
| 495 |
* Display rollback notice on the update-core page. |
| 496 |
* This function displays a notice with a dropdown to select a previous WordPress core version |
| 497 |
* for rollback, if available. |
| 498 |
* |
| 499 |
* @since 1.0.0 |
| 500 |
*/ |
| 501 |
|
| 502 |
// Only show on the update-core screen |
| 503 |
|
| 504 |
if (get_current_screen()->id !== 'update-core') return; |
| 505 |
|
| 506 |
$versions = get_option('eos_pv_core_versions', []); // Get saved versions |
| 507 |
// Ensure versions are unique and sorted |
| 508 |
$versions = array_unique($versions); |
| 509 |
sort($versions); |
| 510 |
|
| 511 |
// If no versions are available, do not display the notice |
| 512 |
if (empty($versions)) return; |
| 513 |
|
| 514 |
?> |
| 515 |
<div class="notice notice-info"> |
| 516 |
<form method="post" action="<?php echo esc_url(admin_url('admin-post.php')); ?>"> |
| 517 |
<h3><?php esc_html_e( 'Rollback WordPress Core', 'plugversions' ); ?></h3> |
| 518 |
<p><?php esc_html_e( 'Select a previously stored version to roll back to:', 'plugversions' ); ?></p> |
| 519 |
<select name="eos_pv_version_to_rollback"> |
| 520 |
<?php foreach ($versions as $version): ?> |
| 521 |
<option value="<?php echo esc_attr($version); ?>"> |
| 522 |
<?php echo esc_html($version); ?> |
| 523 |
</option> |
| 524 |
<?php endforeach; ?> |
| 525 |
</select> |
| 526 |
<?php wp_nonce_field('eos_pv_rollback_wp_core', 'eos_pv_nonce'); ?> |
| 527 |
<input type="hidden" name="action" value="eos_pv_rollback_core"> |
| 528 |
<button type="submit" class="button button-primary"><?php esc_html_e( 'Rollback', 'plugversions' ); ?></button> |
| 529 |
</form> |
| 530 |
</div> |
| 531 |
<?php |
| 532 |
}); |
| 533 |
|
| 534 |
add_filter( 'plugin_action_links_plugversions/plugversions.php', function( $links ) { |
| 535 |
/** |
| 536 |
* Add plugin action link for Annual Protection Plan. |
| 537 |
* |
| 538 |
* @param array $links Array of plugin action links |
| 539 |
* @return array Modified array of plugin action links |
| 540 |
*/ |
| 541 |
$plan_link = '<a href="https://shop.josemortellaro.com/downloads/plugin-update-rescue-annual-protection-plan/" style="color: #d63638; font-weight: bold;">' . esc_html__( 'Protection Plan', 'plugversions' ) . '</a>'; |
| 542 |
// Add to the beginning of the links array |
| 543 |
array_unshift( $links, $plan_link ); |
| 544 |
return $links; |
| 545 |
} ); |