mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-24 08:14:09 +00:00
2ee5768ef5
Bug: T271026 Change-Id: If525e0f950b3a098162b19373edb3b443f559bf2
20 lines
552 B
PHP
20 lines
552 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Scribunto\Hooks;
|
|
|
|
/**
|
|
* This is a hook handler interface, see docs/Hooks.md in core.
|
|
* Use the hook name "ScribuntoExternalLibraries" to register handlers implementing this interface.
|
|
*
|
|
* @stable to implement
|
|
* @ingroup Hooks
|
|
*/
|
|
interface ScribuntoExternalLibrariesHook {
|
|
/**
|
|
* @param string $engine
|
|
* @param array &$extraLibraries
|
|
* @return bool|void True or no return value to continue or false to abort
|
|
*/
|
|
public function onScribuntoExternalLibraries( string $engine, array &$extraLibraries );
|
|
}
|