getModules() ) ) { return false; } $userOptionsLookup = MediaWikiServices::getInstance()->getUserOptionsLookup(); // Disable CodeMirror when the WikiEditor toolbar is not enabled in preferences if ( !$userOptionsLookup->getOption( $out->getUser(), 'usebetatoolbar' ) ) { return false; } return in_array( $out->getActionName(), [ 'edit', 'submit' ] ) && // CodeMirror on textarea wikitext editors doesn't support RTL (T170001) !$out->getTitle()->getPageLanguage()->isRTL(); } /** * BeforePageDisplay hook handler * * @see https://www.mediawiki.org/wiki/Manual:Hooks/BeforePageDisplay * * @param OutputPage $out * @param Skin $skin */ public static function onBeforePageDisplay( OutputPage $out, Skin $skin ) { if ( self::isCodeMirrorOnPage( $out ) ) { $out->addModules( 'ext.CodeMirror' ); $userOptionsLookup = MediaWikiServices::getInstance()->getUserOptionsLookup(); if ( $userOptionsLookup->getOption( $out->getUser(), 'usecodemirror' ) ) { // These modules are predelivered for performance when needed // keep these modules in sync with ext.CodeMirror.js $out->addModules( [ 'ext.CodeMirror.lib', 'ext.CodeMirror.mode.mediawiki' ] ); } } } /** * Hook handler for enabling bracket matching. * * TODO: restrict to pages where codemirror might be enabled. * * @param array &$vars Array of variables to be added into the output of the startup module */ public static function onResourceLoaderGetConfigVars( array &$vars ) { /** @var Config $config */ $config = MediaWikiServices::getInstance()->getMainConfig(); $vars['wgCodeMirrorLineNumberingNamespaces'] = $config->get( 'CodeMirrorLineNumberingNamespaces' ); } /** * GetPreferences hook handler * * @see https://www.mediawiki.org/wiki/Manual:Hooks/GetPreferences * * @param User $user * @param array &$defaultPreferences */ public static function onGetPreferences( User $user, array &$defaultPreferences ) { // CodeMirror is disabled by default for all users. It can enabled for everyone // by default by adding '$wgDefaultUserOptions['usecodemirror'] = 1;' into LocalSettings.php $defaultPreferences['usecodemirror'] = [ 'type' => 'api', ]; $defaultPreferences['usecodemirror-colorblind'] = [ 'type' => 'toggle', 'label-message' => 'codemirror-prefs-colorblind', 'help-message' => 'codemirror-prefs-colorblind-help', 'section' => 'editing/accessibility', ]; } }