📄 Viewing: autoload.php

<?php

\spl_autoload_register(function ($class) {

  if (stripos($class, 'pechenki\Telsender') !== 0) {
    return;
  }

  $classFile = str_replace('\\', '/', substr($class, strlen('pechenki\Telsender') + 1) . '.php');
  include_once __DIR__ . '/' . $classFile;
});

🌑 DarkStealth — WP Plugin Edition

Directory: /home/httpd/html/matrixmodels.com/public_html/wp-content/plugins/telsender