%PDF- %PDF-
| Direktori : /www/varak.net/paste.varak.net-5.6/vendor/googleanalytics/ |
| Current File : /www/varak.net/paste.varak.net-5.6/vendor/googleanalytics/autoload.php |
<?php
spl_autoload_register(function($className) {
if($className[0] == '\\') {
$className = substr($className, 1);
}
// Leave if class should not be handled by this autoloader
if(strpos($className, 'UnitedPrototype\\GoogleAnalytics') !== 0) return;
$classPath = strtr(substr($className, strlen('UnitedPrototype')), '\\', '/') . '.php';
if(file_exists(__DIR__ . $classPath)) {
require(__DIR__ . $classPath);
}
});
?>