mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-14 11:15:13 +00:00
37 lines
836 B
PHP
37 lines
836 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Resource loader module providing extra data from the server to Math.
|
||
|
*
|
||
|
* @file
|
||
|
* @ingroup Extensions
|
||
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
||
|
* @license The MIT License (MIT); see LICENSE.txt
|
||
|
*/
|
||
|
|
||
|
class MathDataModule extends ResourceLoaderModule {
|
||
|
|
||
|
/* Protected Members */
|
||
|
|
||
|
protected $origin = self::ORIGIN_USER_SITEWIDE;
|
||
|
protected $targets = array( 'desktop', 'mobile' );
|
||
|
|
||
|
/* Methods */
|
||
|
|
||
|
public function getScript( ResourceLoaderContext $context ) {
|
||
|
return
|
||
|
've.ui.MWMathDialog.static.setSymbols(' .
|
||
|
file_get_contents( __DIR__ . '/modules/ve-math/symbols.json' ) .
|
||
|
');';
|
||
|
}
|
||
|
|
||
|
public function getDependencies( ResourceLoaderContext $context = null ) {
|
||
|
return array(
|
||
|
'ext.math.visualEditor',
|
||
|
);
|
||
|
}
|
||
|
|
||
|
public function enableModuleContentVersion() {
|
||
|
return true;
|
||
|
}
|
||
|
}
|