PHP 클래스 Habari\Autoload

This method is called automatically in case you are trying to use a class which hasn't been defined yet. We look for the undefined class in the following folders: - /system/classes/*.php - /system/handlers/*.php - /user/classes/*.php - /user/handlers/*.php - /user/sites/x.y.z/classes/*.php - /user/sites/x.y.z/handlers/*.php
파일 보기 프로젝트 열기: habari/system

공개 프로퍼티들

프로퍼티 타입 설명
$files

공개 메소드들

메소드 설명
habari_autoload ( string $class_name ) : boolean SPL Autoload function, includes a file to meet requirement of loading a class by name
queue_dirs ( Array | string $dirs ) : array Queue directories for class autoloading

메소드 상세

habari_autoload() 공개 정적인 메소드

SPL Autoload function, includes a file to meet requirement of loading a class by name
public static habari_autoload ( string $class_name ) : boolean
$class_name string The name of a class, including (if present) a namespace
리턴 boolean True if this function successfully autoloads the class in question

queue_dirs() 공개 정적인 메소드

Queue directories for class autoloading
public static queue_dirs ( Array | string $dirs ) : array
$dirs Array | string An array of directories or a single directory to autoload classes from
리턴 array The full list of files that could be used for autoloading

프로퍼티 상세

$files 정적으로 공개적으로 프로퍼티

static public $files