RobotLoader
class RobotLoader
Nette auto loader is responsible for loading classes and interfaces.
$loader = new Nette\Loaders\RobotLoader;
$loader->addDirectory('app');
$loader->excludeDirectory('app/exclude');
$loader->setTempDirectory('temp');
$loader->register();
Constants
private RETRY_LIMIT |
|
Properties
string[] | $ignoreDirs | ||
string[] | $acceptFiles |
Methods
__construct()
No description
register(bool $prepend = false)
Register autoloader.
void
tryLoad(string $type)
Handles autoloading of classes, interfaces or traits.
addDirectory(string ...$paths)
Add path or paths to list.
reportParseErrors(bool $on = true)
No description
excludeDirectory(string ...$paths)
Excludes path or paths from list.
array
getIndexedClasses()
No description
void
rebuild()
Rebuilds class list cache.
void
refresh()
Refreshes class list cache.
setAutoRefresh(bool $on = true)
Sets auto-refresh mode.
setTempDirectory(string $dir)
Sets path to temporary directory.
array
getCacheKey()
No description
Details
at line 64
__construct()
No description
at line 75
RobotLoader
register(bool $prepend = false)
Register autoloader.
at line 86
void
tryLoad(string $type)
Handles autoloading of classes, interfaces or traits.
at line 133
RobotLoader
addDirectory(string ...$paths)
Add path or paths to list.
at line 144
RobotLoader
reportParseErrors(bool $on = true)
No description
at line 155
RobotLoader
excludeDirectory(string ...$paths)
Excludes path or paths from list.
at line 169
array
getIndexedClasses()
No description
at line 182
void
rebuild()
Rebuilds class list cache.
at line 195
void
refresh()
Refreshes class list cache.
at line 405
RobotLoader
setAutoRefresh(bool $on = true)
Sets auto-refresh mode.
at line 415
RobotLoader
setTempDirectory(string $dir)
Sets path to temporary directory.
at line 507
protected array
getCacheKey()
No description
Traits
SmartObject