MediaWiki
1.28.0
|
Accepts a list of files and directories to search for php files and generates $wgAutoloadLocalClasses or $wgAutoloadClasses lines for all detected classes. More...
Public Member Functions | |
__construct ($basepath, $flags=[]) | |
forceClassPath ($fqcn, $inputPath) | |
Force a class to be autoloaded from a specific path, regardless of where or if it was detected. More... | |
getAutoload ($commandName= 'AutoloadGenerator') | |
Returns all known classes as a string, which can be used to put into a target file (e.g. More... | |
getTargetFileinfo () | |
Returns the filename of the extension.json of skin.json, if there's any, or otherwise the path to the autoload.php file in an array as the "filename" key and with the type (AutoloadGenerator::FILETYPE_JSON or AutoloadGenerator::FILETYPE_PHP) of the file as the "type" key. More... | |
initMediaWikiDefault () | |
Initialize the source files and directories which are used for the MediaWiki default autoloader in {mw-base-dir}/autoload.php including: More... | |
readDir ($dir) | |
readFile ($inputPath) | |
Public Attributes | |
const | FILETYPE_JSON = 'json' |
const | FILETYPE_PHP = 'php' |
Protected Member Functions | |
generateJsonAutoload ($filename) | |
Updates the AutoloadClasses field at the given filename. More... | |
generatePHPAutoload ($commandName, $filename) | |
Generates a PHP file setting up autoload information. More... | |
Static Protected Member Functions | |
static | normalizePathSeparator ($path) |
Ensure that Unix-style path separators ("/") are used in the path. More... | |
Protected Attributes | |
string | $basepath |
Root path of the project being scanned for classes. More... | |
array | $classes = [] |
Map of file shortpath to list of FQCN detected within file. More... | |
ClassCollector | $collector |
Helper class extracts class names from php files. More... | |
array | $overrides = [] |
Map of FQCN to relative path(from self::$basepath) More... | |
string | $variableName = 'wgAutoloadClasses' |
The global variable to write output to. More... | |
Accepts a list of files and directories to search for php files and generates $wgAutoloadLocalClasses or $wgAutoloadClasses lines for all detected classes.
These lines are written out to an autoload.php file in the projects provided basedir.
Usage:
$gen = new AutoloadGenerator( __DIR__ ); $gen->readDir( __DIR__ . '/includes' ); $gen->readFile( __DIR__ . '/foo.php' ) $gen->getAutoload();
Definition at line 16 of file AutoloadGenerator.php.
AutoloadGenerator::__construct | ( | $basepath, | |
$flags = [] |
|||
) |
string | $basepath | Root path of the project being scanned for classes |
array | string | $flags | local - If this flag is set $wgAutoloadLocalClasses will be build instead of $wgAutoloadClasses |
Definition at line 52 of file AutoloadGenerator.php.
References $flags.
AutoloadGenerator::forceClassPath | ( | $fqcn, | |
$inputPath | |||
) |
Force a class to be autoloaded from a specific path, regardless of where or if it was detected.
string | $fqcn | FQCN to force the location of |
string | $inputPath | Full path to the file containing the class |
Exception |
Definition at line 71 of file AutoloadGenerator.php.
References $path.
|
protected |
Updates the AutoloadClasses field at the given filename.
string | $filename | Filename of JSON extension/skin registration file |
Definition at line 132 of file AutoloadGenerator.php.
References $path, as, classes, FormatJson\decode(), and FormatJson\encode().
Referenced by getAutoload().
|
protected |
Generates a PHP file setting up autoload information.
{string} | $commandName Command name to include in comment |
{string} | $filename of PHP file to put autoload information in. |
Definition at line 165 of file AutoloadGenerator.php.
References $content, $output, $path, as, classes, global, and php.
Referenced by getAutoload().
AutoloadGenerator::getAutoload | ( | $commandName = 'AutoloadGenerator' | ) |
Returns all known classes as a string, which can be used to put into a target file (e.g.
extension.json, skin.json or autoload.php)
string | $commandName | Value used in file comment to direct developers towards the appropriate way to update the autoload. |
Definition at line 226 of file AutoloadGenerator.php.
References $fileinfo, generateJsonAutoload(), generatePHPAutoload(), and getTargetFileinfo().
AutoloadGenerator::getTargetFileinfo | ( | ) |
Returns the filename of the extension.json of skin.json, if there's any, or otherwise the path to the autoload.php file in an array as the "filename" key and with the type (AutoloadGenerator::FILETYPE_JSON or AutoloadGenerator::FILETYPE_PHP) of the file as the "type" key.
Definition at line 248 of file AutoloadGenerator.php.
References $fileinfo.
Referenced by getAutoload().
AutoloadGenerator::initMediaWikiDefault | ( | ) |
Initialize the source files and directories which are used for the MediaWiki default autoloader in {mw-base-dir}/autoload.php including:
Definition at line 287 of file AutoloadGenerator.php.
References $dir, as, readDir(), and readFile().
|
staticprotected |
Ensure that Unix-style path separators ("/") are used in the path.
string | $path |
Definition at line 274 of file AutoloadGenerator.php.
References $path.
AutoloadGenerator::readDir | ( | $dir | ) |
string | $dir | Path to a directory to recursively search for php files with either .php or .inc extensions |
Definition at line 110 of file AutoloadGenerator.php.
References $dir, $ext, $path, as, and readFile().
Referenced by initMediaWikiDefault().
AutoloadGenerator::readFile | ( | $inputPath | ) |
string | $inputPath | Path to a php file to find classes within |
Exception |
Definition at line 88 of file AutoloadGenerator.php.
References classes.
Referenced by initMediaWikiDefault(), and readDir().
|
protected |
Root path of the project being scanned for classes.
Definition at line 23 of file AutoloadGenerator.php.
|
protected |
Map of file shortpath to list of FQCN detected within file.
Definition at line 33 of file AutoloadGenerator.php.
|
protected |
Helper class extracts class names from php files.
Definition at line 28 of file AutoloadGenerator.php.
|
protected |
Map of FQCN to relative path(from self::$basepath)
Definition at line 43 of file AutoloadGenerator.php.
|
protected |
The global variable to write output to.
Definition at line 38 of file AutoloadGenerator.php.
const AutoloadGenerator::FILETYPE_JSON = 'json' |
Definition at line 17 of file AutoloadGenerator.php.
const AutoloadGenerator::FILETYPE_PHP = 'php' |
Definition at line 18 of file AutoloadGenerator.php.