]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - extensions/SyntaxHighlight_GeSHi/ResourceLoaderSyntaxHighlightVisualEditorModule.php
MediaWiki 1.30.2-scripts
[autoinstalls/mediawiki.git] / extensions / SyntaxHighlight_GeSHi / ResourceLoaderSyntaxHighlightVisualEditorModule.php
1 <?php
2
3 /**
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17  * http://www.gnu.org/copyleft/gpl.html
18  */
19
20 class ResourceLoaderSyntaxHighlightVisualEditorModule extends ResourceLoaderFileModule {
21
22         protected $targets = [ 'desktop', 'mobile' ];
23
24         /**
25          * @param ResourceLoaderContext $context
26          * @return string JavaScript code
27          */
28         public function getScript( ResourceLoaderContext $context ) {
29                 $scripts = parent::getScript( $context );
30
31                 return $scripts . Xml::encodeJsCall(
32                         've.dm.MWSyntaxHighlightNode.static.addPygmentsLanguages', [
33                                 $this->getPygmentsLanguages()
34                         ],
35                         ResourceLoader::inDebugMode()
36                 ) . Xml::encodeJsCall(
37                         've.dm.MWSyntaxHighlightNode.static.addGeshiToPygmentsMap', [
38                                 SyntaxHighlightGeSHiCompat::getGeSHiToPygmentsMap()
39                         ],
40                         ResourceLoader::inDebugMode()
41                 ) . Xml::encodeJsCall(
42                         've.dm.MWSyntaxHighlightNode.static.addPygmentsToAceMap', [
43                                 SyntaxHighlightAce::getPygmentsToAceMap()
44                         ],
45                         ResourceLoader::inDebugMode()
46                 );
47         }
48
49         /**
50          * Don't break debug mode by only showing file URLs
51          */
52         public function getScriptURLsForDebug( ResourceLoaderContext $context ) {
53                 return ResourceLoaderModule::getScriptURLsForDebug( $context );
54         }
55
56         /**
57          * Get a full list of available langauges
58          * @return array
59          */
60         private function getPygmentsLanguages() {
61                 $lexers = require __DIR__ . '/SyntaxHighlight.lexers.php';
62                 return $lexers;
63         }
64
65         public function enableModuleContentVersion() {
66                 return true;
67         }
68 }
69 class_alias( ResourceLoaderSyntaxHighlightVisualEditorModule::class,
70         'ResourceLoaderGeSHiVisualEditorModule' );