| 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
defined('ABSPATH') || exit;
/**
* Provides a partial, native PHP implementation for the Ctype extension.
*
* @see https://github.com/symfony/polyfill-ctype
*/
require_once __DIR__.'/vendors/symfony/polyfill-ctype/bootstrap80.php';
/**
* Provides a partial, native PHP implementation for the Iconv extension.
*
* @see https://github.com/symfony/polyfill-iconv
*/
require_once __DIR__.'/vendors/symfony/polyfill-iconv/bootstrap80.php';
/**
* Provides a partial, native PHP implementation for the Mbstring extension.
*
* @see https://github.com/symfony/polyfill-mbstring
*/
require_once __DIR__.'/vendors/symfony/polyfill-mbstring/bootstrap80.php';
/**
* Load the Action Scheduler library.
*
* @see https://actionscheduler.org
*/
require_once __DIR__.'/vendors/woocommerce/action-scheduler/action-scheduler.php';
spl_autoload_register(function ($className) {
$classMap = [
'Plugin_Upgrader' => ABSPATH.'wp-admin/includes/class-wp-upgrader.php',
'Plugin_Upgrader_Skin' => ABSPATH.'wp-admin/includes/class-wp-upgrader.php',
'WP_Debug_Data' => ABSPATH.'wp-admin/includes/class-wp-debug-data.php',
'WP_List_Table' => ABSPATH.'wp-admin/includes/class-wp-list-table.php',
'WP_Posts_List_Table' => ABSPATH.'wp-admin/includes/class-wp-posts-list-table.php',
'WP_Screen'=> ABSPATH.'wp-admin/includes/class-wp-screen.php',
];
if (array_key_exists($className, $classMap) && file_exists($classMap[$className])) {
require_once $classMap[$className];
}
$namespaces = [
'GeminiLabs\SiteReviews\\' => __DIR__.'/plugin/',
'GeminiLabs\SiteReviews\Tests\\' => __DIR__.'/tests/phpunit/tests/',
'GeminiLabs\Laravel\SerializableClosure\\' => __DIR__.'/vendors/laravel/serializable-closure/',
'GeminiLabs\League\Csv\\' => __DIR__.'/vendors/thephpleague/csv/',
'GeminiLabs\Sepia\PoParser\\' => __DIR__.'/vendors/sepia/po-parser/',
'GeminiLabs\Spatie\Color\\' => __DIR__.'/vendors/spatie/color/',
'GeminiLabs\Symfony\Component\Process\\' => __DIR__.'/vendors/symfony/process/',
'GeminiLabs\Symfony\Polyfill\Ctype\\' => __DIR__.'/vendors/symfony/polyfill-ctype/',
'GeminiLabs\Symfony\Polyfill\Iconv\\' => __DIR__.'/vendors/symfony/polyfill-iconv/',
'GeminiLabs\Symfony\Polyfill\Mbstring\\' => __DIR__.'/vendors/symfony/polyfill-mbstring/',
'GeminiLabs\Symfony\Polyfill\Php80\\' => __DIR__.'/vendors/symfony/polyfill-php80/',
'GeminiLabs\Vectorface\Whip\\' => __DIR__.'/vendors/vectorface/whip/',
];
foreach ($namespaces as $prefix => $baseDir) {
$len = strlen($prefix);
if (0 !== strncmp($prefix, $className, $len)) {
continue;
}
$file = $baseDir.str_replace('\\', '/', substr($className, $len)).'.php';
if (!file_exists($file)) {
continue;
}
require $file;
break;
}
});