Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques statiques | |
static | discover ($classPrefix, $parentPath, $force=true, $recurse=false) |
static | getClassList () |
static | getNamespaces () |
static | import ($key, $base=null) |
static | load ($class) |
static | register ($class, $path, $force=true) |
static | registerPrefix ($prefix, $path, $reset=false, $prepend=false) |
static | registerAlias ($alias, $original) |
static | registerNamespace ($namespace, $path, $reset=false, $prepend=false) |
static | setup ($enablePsr=true, $enablePrefixes=true, $enableClasses=true) |
static | loadByPsr0 ($class) |
static | loadByAlias ($class) |
Attributs protégés statiques | |
static | $classes = array() |
static | $imported = array() |
static | $prefixes = array() |
static | $classAliases = array() |
static | $namespaces = array() |
Fonctions membres privées statiques | |
static | _autoload ($class) |
static | _load ($class, $lookup) |
Définition à la ligne 17 du fichier loader.php.
|
staticprivate |
Autoload a class based on name.
string | $class | The class to be loaded. |
Définition à la ligne 499 du fichier loader.php.
|
staticprivate |
Load a class based on name and lookup array.
string | $class | The class to be loaded (wihtout prefix). |
array | $lookup | The array of base paths to use for finding the class file. |
Définition à la ligne 524 du fichier loader.php.
|
static |
Method to discover classes of a given type in a given path.
string | $classPrefix | The class name prefix to use for discovery. |
string | $parentPath | Full path to the parent folder for the classes to discover. |
boolean | $force | True to overwrite the autoload path value for the class if it already exists. |
boolean | $recurse | Recurse through all child directories as well as the parent path. |
Définition à la ligne 71 du fichier loader.php.
|
static |
Method to get the list of registered classes and their respective file paths for the autoloader.
Définition à la ligne 119 du fichier loader.php.
|
static |
Method to get the list of registered namespaces.
Définition à la ligne 131 du fichier loader.php.
|
static |
Loads a class from specified directories.
string | $key | The class name to look for (dot notation). |
string | $base | Search this directory for the class. |
Définition à la ligne 146 du fichier loader.php.
Référencé par jimport().
|
static |
Load the file for a class.
string | $class | The class to be loaded. |
Définition à la ligne 211 du fichier loader.php.
Référencé par JClientFtp\__construct().
|
static |
Method to autoload classes that have been aliased using the registerAlias method.
string | $class | The fully qualified class name to autoload. |
Définition à la ligne 476 du fichier loader.php.
|
static |
Method to autoload classes that are namespaced to the PSR-0 standard.
string | $class | The fully qualified class name to autoload. |
Définition à la ligne 419 du fichier loader.php.
|
static |
Directly register a class to the autoload list.
string | $class | The class name to register. |
string | $path | Full path to the file that holds the class to register. |
boolean | $force | True to overwrite the autoload path value for the class if it already exists. |
Définition à la ligne 244 du fichier loader.php.
Référencé par JApplication\_createConfiguration(), JApplicationCli\fetchConfigurationData(), et JApplicationWeb\fetchConfigurationData().
|
static |
Offers the ability for "just in time" usage of class_alias()
. You cannot overwrite an existing alias.
string | $alias | The alias name to register. |
string | $original | The original class to alias. |
Définition à la ligne 316 du fichier loader.php.
|
static |
Register a namespace to the autoloader. When loaded, namespace paths are searched in a "last in, first out" order.
string | $namespace | A case sensitive Namespace to register. |
string | $path | A case sensitive absolute file path to the library root where classes of the given namespace can be found. |
boolean | $reset | True to reset the namespace with only the given lookup path. |
boolean | $prepend | If true, push the path to the beginning of the namespace lookup paths array. |
RuntimeException |
Définition à la ligne 342 du fichier loader.php.
|
static |
Register a class prefix with lookup path. This will allow developers to register library packages with different class prefixes to the system autoloader. More than one lookup path may be registered for the same class prefix, but if this method is called with the reset flag set to true then any registered lookups for the given prefix will be overwritten with the current lookup path. When loaded, prefix paths are searched in a "last in, first out" order.
string | $prefix | The class prefix to register. |
string | $path | Absolute file path to the library root where classes with the given prefix can be found. |
boolean | $reset | True to reset the prefix with only the given lookup path. |
boolean | $prepend | If true, push the path to the beginning of the prefix lookup paths array. |
RuntimeException |
Définition à la ligne 278 du fichier loader.php.
|
static |
Method to setup the autoloaders for the Joomla Platform. Since the SPL autoloaders are called in a queue we will add our explicit class-registration based loader first, then fall back on the autoloader based on conventions. This will allow people to register a class in a specific location and override platform libraries as was previously possible.
boolean | $enablePsr | True to enable autoloading based on PSR-0. |
boolean | $enablePrefixes | True to enable prefix based class loading (needed to auto load the Joomla core). |
boolean | $enableClasses | True to enable class map based class loading (needed to auto load the Joomla core). |
Définition à la ligne 385 du fichier loader.php.
|
staticprotected |
Définition à la ligne 49 du fichier loader.php.
|
staticprotected |
Définition à la ligne 25 du fichier loader.php.
|
staticprotected |
Définition à la ligne 33 du fichier loader.php.
|
staticprotected |
Définition à la ligne 57 du fichier loader.php.
|
staticprotected |
Définition à la ligne 41 du fichier loader.php.