PluginProbe
Trinity Backup – Backup, Migrate, Restore, Clone & Schedule Backups / 2.0.5
Trinity Backup – Backup, Migrate, Restore, Clone & Schedule Backups v2.0.5
trunk 2.0.10 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9
trinity-backup / trinity-backup.php

trinity-backup.php in Trinity Backup – Backup, Migrate, Restore, Clone & Schedule Backups 2.0.5, at trinity-backup.php

25 lines 760 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Trinity Backup - One Click Migrate & Restore, Any Size Backup Export & Import
4 * Description: Lightweight backup and migration plugin with chunked processing, streaming archives, and optional AES-256 encryption. Create full site backups, migrate between servers, and restore with ease.
5 * Version: 2.0.5
6 * Author: KingAddons.com
7 * Author URI: https://kingaddons.com
8 * License: GPLv2 or later
9 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
10 * Text Domain: trinity-backup
11 * Requires at least: 6.2
12 * Requires PHP: 8.0
13 */
14
15 declare(strict_types=1);
16
17 if (!defined('ABSPATH')) {
18 exit;
19 }
20
21 require_once __DIR__ . '/src/Core/Autoloader.php';
22 \TrinityBackup\Core\Autoloader::register();
23
24 \TrinityBackup\Core\Plugin::init();
25