| Server IP : 185.252.147.100 / Your IP : 216.73.217.33 Web Server : nginx/1.27.3 System : Linux mitrofanov.ru 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64 User : mitr ( 1000) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/html/tour.mitrofanov.ru/public/wp-content/plugins/site-reviews/ |
Upload File : |
<?php
/**
* ╔═╗╔═╗╔╦╗╦╔╗╔╦ ╦ ╔═╗╔╗ ╔═╗
* ║ ╦║╣ ║║║║║║║║ ║ ╠═╣╠╩╗╚═╗
* ╚═╝╚═╝╩ ╩╩╝╚╝╩ ╩═╝╩ ╩╚═╝╚═╝.
*
* Plugin Name: Site Reviews
* Plugin URI: https://wordpress.org/plugins/site-reviews
* Description: Receive and display reviews on your website
* Version: 8.0.13
* Author: Paul Ryley
* Author URI: https://site-reviews.com
* License: GPL3
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
* Requires at least: 6.7
* Requires PHP: 8.1.2
* Text Domain: site-reviews
* Domain Path: languages
* WC requires at least: 9.6
* WC tested up to: 10.7
*/
defined('ABSPATH') || exit;
require_once __DIR__.'/autoload.php';
require_once __DIR__.'/compatibility.php';
require_once __DIR__.'/deprecated.php';
require_once __DIR__.'/helpers.php';
require_once __DIR__.'/migration.php';
$app = GeminiLabs\SiteReviews\Application::load();
$app->make('Provider')->register($app);
$app->init();
new GeminiLabs\SiteReviews\CLI();
register_shutdown_function([$app, 'catchFatalError']);