mediawiki-extensions-Syntax.../includes/VisualEditorConfig.php
Tim Starling 54b02b02e1 Migrate ResourceLoaderSyntaxHighlightVisualEditorModule to a virtual file callback
Depends-On: I97d61b5793159cea365740e0563f7b733e0f16de
Bug: T47514
Change-Id: I10fceeee808e4d08f7ed63afb13b4d87129365c7
2023-05-08 17:15:48 +10:00

49 lines
1.6 KiB
PHP

<?php
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*/
namespace MediaWiki\SyntaxHighlight;
use MediaWiki\ResourceLoader as RL;
class VisualEditorConfig {
/**
* @param RL\Context $context
* @return string JavaScript code
*/
public static function makeScript( RL\Context $context ) {
return 've.dm.MWSyntaxHighlightNode.static.addPygmentsLanguages('
. $context->encodeJson( self::getPygmentsLanguages() )
. ');'
. 've.dm.MWSyntaxHighlightNode.static.addGeshiToPygmentsMap('
. $context->encodeJson( SyntaxHighlightGeSHiCompat::getGeSHiToPygmentsMap() )
. ');'
. 've.dm.MWSyntaxHighlightNode.static.addPygmentsToAceMap('
. $context->encodeJson( SyntaxHighlightAce::getPygmentsToAceMap() )
. ');';
}
/**
* Get a full list of available languages
* @return array
*/
private static function getPygmentsLanguages() {
return array_keys( require __DIR__ . '/../SyntaxHighlight.lexers.php' );
}
}