Zend\Loader\ModuleAutoloader is a special implementation of the Zend\Loader\SplAutoloader interface, used by Zend\ModuleManager to autoload Module classes from different sources.
Apart from being able to autoload modules from directories, the ModuleAutoloader can also autoload modules packaged as Phar archives, which allows for packaging your modules in a single file for easier distribution. Supported archive formats are: .phar, .phar.gz, .phar.bz2, .phar.tar, .phar.tar.gz, .phar.tar.bz2, .phar.zip, .tar, tar.gz, .tar.bz2 and .zip. It is, however, recommended to avoid compressing your packages (be it either gz, bz2 or zip compression), as it introduces additional CPU overhead to every request.
As the ModuleAutoloader is meant to be used with the ModuleManager, for examples of it’s usage and how to configure it, please see the Module Autoloader Usage section of the ModuleManager documentation.
The ModuleAutoloader defines the following options.
ModuleAutoloader Options
The ModuleAutoloader expects an array of options, where each option is either a path to scan for modules, or a key/value pair of explicit module paths. In the case of explicit module paths, the key is the module’s name, and the value is the path to that module.
1 2 3 4 5 | $options = array(
'/path/to/modules',
'/path/to/other/modules',
'MyModule' => '/explicit/path/mymodule-v1.2'
);
|
Initialize and configure the object __construct($options = null)
Constructor Used during instantiation of the object. Optionally, pass options, which may be either an array or Traversable object; this argument will be passed to setOptions().
Configure the module autoloader setOptions($options)
setOptions() Configures the state of the autoloader, registering paths to modules. Expects an array or Traversable object; the argument will be passed to registerPaths().
Attempt to load a Module class. autoload($class)
autoload() Attempts to load the specified Module class. Returns a boolean false on failure, or a string indicating the class loaded on success.
Register with spl_autoload. register()
register() Registers the autoload() method of the current instance with spl_autoload_register().
Unregister with spl_autoload. unregister()
unregister() Unregisters the autoload() method of the current instance with spl_autoload_unregister().
Register multiple paths with the autoloader. registerPaths($paths)
registerPaths() Register a paths to modules. Expects an array or Traversable object. For an example array, please see the Configuration options section.
Register a single path with the autoloader. registerPath($path, $moduleName=false)
registerPath() Register a single path with the autoloader. The first parameter, $path, is expected to be a string. The second parameter, $moduleName, is expected to be a module name, which allows for registering an explicit path to that module.
Get all paths registered with the autoloader. getPaths()
getPaths() Returns an array of all the paths registered with the current instance of the autoloader.
Please review the examples in the quick start for usage.
The source code of this file is hosted on GitHub. Everyone can update and fix errors in this document with few clicks - no downloads needed.