Dashboard
PHP:
8.2.30
OS:
Linux
User:
dh_nv8b2m
/
/
usr
/
local
/
wp
/
vendor
/
gettext
/
languages
/
src
📤 Upload
📝 New File
📁 New Folder
Close
Editing: autoloader.php
<?php spl_autoload_register( function ($class) { if (strpos($class, 'Gettext\\Languages\\') !== 0) { return; } $file = __DIR__ . str_replace('\\', DIRECTORY_SEPARATOR, substr($class, strlen('Gettext\\Languages'))) . '.php'; if (is_file($file)) { require_once $file; } } );
Save
Cancel