< Extension:Scribunto < Hooks
| ScribuntoExternalLibraryPaths | |
|---|---|
| Available from version ??? (Gerrit change 47548) Modify the list of all paths that libraries can be in for a given engine. |
|
| Define function: | public static function onScribuntoExternalLibraryPaths( string $engine, array &$extraLibraryPaths ) { ... }
|
| Attach hook: | $wgHooks['ScribuntoExternalLibraryPaths'][] = 'MyExtensionHooks::onScribuntoExternalLibraryPaths';
|
| Called from: | File(s): Scribunto / includes/common/ScribuntoEngineBase.php Function(s): getLibraryPaths |
For more information about attaching hooks, see Manual:Hooks.
For examples of other extensions using this hook, see Category:ScribuntoExternalLibraryPaths extensions.
Parameters
$engine: Astringrepresenting the script engine being used, e.g. 'lua'.&$extraLibraryPaths: Anarrayof strings (string[]), representing the filesystem paths to library files. Will be merged with core library paths.
See also
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.