Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F2753362
MakeGlobalVariablesScriptHook.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
MakeGlobalVariablesScriptHook.php
View Options
<?php
namespace
MediaWiki\Output\Hook
;
use
MediaWiki\Output\OutputPage
;
/**
* This is a hook handler interface, see docs/Hooks.md.
* Use the hook name "MakeGlobalVariablesScript" to register handlers implementing this interface.
*
* @stable to implement
* @ingroup Hooks
*/
interface
MakeGlobalVariablesScriptHook
{
/**
* Export user- or page-specific `mw.config` variables to JavaScript.
*
* When using this hook, be as selective as possible about when the data is set.
* Reduce the cost by setting values only for specific titles, namespaces, or user-rights.
*
* Data exported here is transmitted with the highest possible bandwidth priority (ahead of
* page content even). Any data that is not dependant on the current request, should go
* through MediaWiki\ResourceLoader\Hook\ResourceLoaderGetConfigVarsHook instead.
*
* This hook is called from OutputPage::getJSVars.
*
* @since 1.35
*
* @param array &$vars Variable (or multiple variables)
* @param OutputPage $out OutputPage which called the hook, can be used to get the real title
* @return void This hook must not abort, it must return no value
*/
public
function
onMakeGlobalVariablesScript
(
&
$vars
,
$out
):
void
;
}
/** @deprecated class alias since 1.42 */
class_alias
(
MakeGlobalVariablesScriptHook
::
class
,
'MediaWiki
\H
ook
\M
akeGlobalVariablesScriptHook'
);
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Jul 3, 21:09 (1 d, 1 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
41/22/9ee502f1909620bbce6823d62d3d
Default Alt Text
MakeGlobalVariablesScriptHook.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment