PluginProbe
Core Rollback / 1.3.4
Core Rollback v1.3.4
1.4.3 trunk 1.0.0 1.0.1 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.4.0 1.4.1 1.4.2
core-rollback / core-rollback.php

core-rollback.php in Core Rollback 1.3.4, at core-rollback.php

38 lines 924 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Core Rollback
4 *
5 * @author Andy Fragen
6 * @license MIT
7 * @link https://github.com/afragen/core-rollback
8 * @package core-rollback
9 */
10
11 /**
12 * Plugin Name: Core Rollback
13 * Plugin URI: https://github.com/afragen/core-rollback
14 * Description: Seamless rollback of WordPress Core to latest release or any outdated, secure release using the Core Update API and core update methods.
15 * Version: 1.3.4
16 * Author: Andy Fragen
17 * License: MIT
18 * Domain Path: /languages
19 * Text Domain: core-rollback
20 * Network: true
21 * GitHub Plugin URI: https://github.com/afragen/core-rollback
22 * Primary Branch: main
23 * Requires PHP: 5.6
24 * Requires at least: 4.0
25 */
26
27 namespace Fragen\Rollback;
28
29 /*
30 * Exit if called directly.
31 */
32 if ( ! defined( 'WPINC' ) ) {
33 die;
34 }
35
36 require_once __DIR__ . '/vendor/autoload.php';
37 ( new Bootstrap() )->run();
38