mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeMirror
synced 2024-11-15 02:04:02 +00:00
ae450a5c3c
* add on/off button to toolbar * add highlighting table, hr ----, sign ~~~ * update codemirror lib to 4.7 * fix font size Change-Id: Idd5775d6c80a18406aee7b8ab51691f26038764c
78 lines
2.4 KiB
PHP
78 lines
2.4 KiB
PHP
<?php
|
|
|
|
|
|
class CodeMirrorHooks {
|
|
|
|
static $globalVariableScript = array();
|
|
|
|
/**
|
|
*
|
|
* @global Parser $wgParser
|
|
* @global Language $wgContLang
|
|
* @param EditPage $editPage
|
|
* @param OutputPage $output
|
|
* @return boolean
|
|
*/
|
|
public static function onEditPageShowEditFormInitial( EditPage $editPage, OutputPage $output ) {
|
|
global $wgParser, $wgContLang;
|
|
|
|
self::$globalVariableScript['ExtMode'] = array(
|
|
'tag' => array(
|
|
'pre' => 'mw-tag-pre',
|
|
'nowiki' => 'mw-tag-nowiki',
|
|
),
|
|
'func' => array(),
|
|
'data' => array()
|
|
);
|
|
\wfRunHooks( 'CodeMirrorGetExtensionMode', array( &self::$globalVariableScript['ExtMode'], &$module, &$output ) );
|
|
|
|
if ( false === isset( $wgParser->mFunctionSynonyms ) ) {
|
|
$wgParser->initialiseVariables();
|
|
$wgParser->firstCallInit();
|
|
}
|
|
self::$globalVariableScript['Tags'] = array_fill_keys( $wgParser->getTags(), true );
|
|
|
|
$mw = $wgContLang->getMagicWords();
|
|
self::$globalVariableScript['DoubleUnderscore'] = array( array(), array() );
|
|
foreach ( MagicWord::getDoubleUnderscoreArray()->names as $name ) {
|
|
if ( isset( $mw[$name] ) ) {
|
|
$caseSensitive = array_shift( $mw[$name] ) == 0 ? 0 : 1;
|
|
foreach ( $mw[$name] as $n ) {
|
|
self::$globalVariableScript['DoubleUnderscore'][$caseSensitive][ $caseSensitive ? $n : $wgContLang->lc( $n ) ] = $name;
|
|
}
|
|
} else {
|
|
self::$globalVariableScript['DoubleUnderscore'][0][] = $name;
|
|
}
|
|
}
|
|
|
|
self::$globalVariableScript['FunctionSynonyms'] = $wgParser->mFunctionSynonyms;
|
|
foreach ( MagicWord::getVariableIDs() as $name ) {
|
|
if ( isset( $mw[$name] ) ) {
|
|
$caseSensitive = array_shift( $mw[$name] ) == 0 ? 0 : 1;
|
|
foreach ( $mw[$name] as $n ) {
|
|
self::$globalVariableScript['FunctionSynonyms'][$caseSensitive][ $caseSensitive ? $n : $wgContLang->lc( $n ) ] = $name;
|
|
}
|
|
}
|
|
}
|
|
|
|
self::$globalVariableScript['UrlProtocols'] = $wgParser->mUrlProtocols;// wfUrlProtocolsWithoutProtRel();
|
|
// self::$globalVariableScript['LinkTrailCharacters'] = $wgContLang->linkTrail();
|
|
$output->addModules( 'ext.CodeMirror.init' );
|
|
return true;
|
|
}
|
|
|
|
public static function onMakeGlobalVariablesScript( array &$vars ) {
|
|
foreach ( self::$globalVariableScript as $key=> $value ) {
|
|
$vars["extCodeMirror$key"] = $value;
|
|
}
|
|
}
|
|
|
|
public static function getPreferences( $user, &$defaultPreferences ) {
|
|
$defaultPreferences['usecodemirror'] = array(
|
|
'type' => 'api',
|
|
'default' => '1',
|
|
);
|
|
return true;
|
|
}
|
|
}
|