autoload.php 292 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 <?php spl_autoload_register(function ($class) { if (substr($class, 0, 12) !== "wpdFormAttr\\") { return; } $class = str_replace("\\", "/", $class); $path = dirname(__FILE__)."/$class.php"; if (is_readable($path)) { require_once $path; } });