?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/wdp-facture-groupe/vendor/gettext/gettext/src/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/wdp-facture-groupe/vendor/gettext/gettext

?? Viewing: autoloader.php

<?php

spl_autoload_register(function ($class) {
    if (strpos($class, 'Gettext\\') !== 0) {
        return;
    }

    $file = __DIR__.str_replace('\\', DIRECTORY_SEPARATOR, substr($class, strlen('Gettext'))).'.php';

    if (is_file($file)) {
        require_once $file;
    }
});


??

??