HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/biblioteka/wp-content/plugins/core-rollback/core-rollback.php
<?php
/**
 * Core Rollback
 *
 * @author  Andy Fragen
 * @license MIT
 * @link    https://github.com/afragen/core-rollback
 * @package core-rollback
 */

/**
 * Plugin Name:       Core Rollback
 * Plugin URI:        https://github.com/afragen/core-rollback
 * Description:       Seamless rollback of WordPress Core to latest release or any outdated, secure release using the Core Update API and core update methods.
 * Version:           1.3.7
 * Author:            Andy Fragen
 * License:           MIT
 * Domain Path:       /languages
 * Text Domain:       core-rollback
 * Network:           true
 * GitHub Plugin URI: https://github.com/afragen/core-rollback
 * Primary Branch:    main
 * Requires PHP:      5.6
 * Requires at least: 4.1
 */

namespace Fragen\Rollback;

/*
 * Exit if called directly.
 */
if ( ! defined( 'WPINC' ) ) {
	die;
}

require_once __DIR__ . '/vendor/autoload.php';
add_action(
	'init',
	function () {
		( new Bootstrap() )->run();
	}
);