📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 16:40:42
📂
/ (Root)
/
usr
/
local
/
sitepad
/
editor
/
site-data
/
plugins
/
loginizer-security
/
lib
/
MaxMind
📍 /usr/local/sitepad/editor/site-data/plugins/loginizer-security/lib/MaxMind
🔄 Refresh
✏️
Editing: autoloader.php
Read Only
<?php function loginizer_maxmind_autoloader($class){ $prefix = 'LoginizerMaxMind\\Db\\'; $base_dir = __DIR__ . '/Db/'; if(strncmp($class, $prefix, strlen($prefix)) !== 0){ return; } $relative = substr($class, strlen($prefix)); $relative_path = str_replace('\\', '/', $relative) . '.php'; $file = $base_dir . $relative_path; if(file_exists($file)){ include_once $file; } } spl_autoload_register('loginizer_maxmind_autoloader');
💾 Save Changes
❌ Cancel