| Server IP : 217.160.0.223 / Your IP : 216.73.216.141 Web Server : Apache System : Linux www 6.18.38-i1-ampere+ #1084 SMP Tue Jul 7 09:18:31 CEST 2026 aarch64 User : sws1073902667 ( 1073902667) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/www/public/wp-content/plugins/fluentformpro/ |
Upload File : |
<?php
defined('ABSPATH') or die;
spl_autoload_register(function ($class) {
$namespace = 'FluentFormPro';
if (substr($class, 0, strlen($namespace)) !== $namespace) {
return;
}
$className = str_replace(
array('\\', $namespace, strtolower($namespace)),
array('/', 'src', ''),
$class
);
$basePath = plugin_dir_path(__FILE__);
$file = $basePath.trim($className, '/').'.php';
if (is_readable($file)) {
include $file;
}
});