Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 10
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
VisualEditorConfig
0.00% covered (danger)
0.00%
0 / 10
0.00% covered (danger)
0.00%
0 / 2
6
0.00% covered (danger)
0.00%
0 / 1
 makeScript
0.00% covered (danger)
0.00%
0 / 9
0.00% covered (danger)
0.00%
0 / 1
2
 getPygmentsLanguages
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2/**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 */
18
19namespace MediaWiki\SyntaxHighlight;
20
21use MediaWiki\ResourceLoader as RL;
22
23class VisualEditorConfig {
24
25    /**
26     * @param RL\Context $context
27     * @return string JavaScript code
28     */
29    public static function makeScript( RL\Context $context ) {
30        return 've.dm.MWSyntaxHighlightNode.static.addPygmentsLanguages('
31            . $context->encodeJson( self::getPygmentsLanguages() )
32            . ');'
33            . 've.dm.MWSyntaxHighlightNode.static.addGeshiToPygmentsMap('
34            . $context->encodeJson( SyntaxHighlightGeSHiCompat::getGeSHiToPygmentsMap() )
35            . ');'
36            . 've.dm.MWSyntaxHighlightNode.static.addPygmentsToAceMap('
37            . $context->encodeJson( SyntaxHighlightAce::getPygmentsToAceMap() )
38            . ');';
39    }
40
41    /**
42     * Get a full list of available languages
43     * @return string[]
44     */
45    private static function getPygmentsLanguages(): array {
46        return array_keys( require __DIR__ . '/../SyntaxHighlight.lexers.php' );
47    }
48}