Requests::autoloader() public WP 1.0
Autoloader for Requests
Register this with {@see register_autoloader()} if you'd like to avoid having to create your own.
(You can also use spl_autoload_register directly if you'd prefer.)
{} Это метод класса: Requests{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
$result = Requests::autoloader( $class );
- $class(строка) (обязательный)
- Class name to load
Код Requests::autoloader() Requests::autoloader WP 5.7.1
public static function autoloader($class) {
// Check that the class starts with "Requests"
if (strpos($class, 'Requests') !== 0) {
return;
}
$file = str_replace('_', '/', $class);
if (file_exists(dirname(__FILE__) . '/' . $file . '.php')) {
require_once(dirname(__FILE__) . '/' . $file . '.php');
}
}