ProfessionalWiki / chameleon

Provides a highly flexible and customizable skin using Bootstrap 4
https://www.mediawiki.org/wiki/Skin:Chameleon
Other
116 stars 62 forks source link

Add RecentChangs hotkey #308

Open JeroenDeDauw opened 2 years ago

JeroenDeDauw commented 2 years ago

From the LocalSettings.php on the Maps wiki:

    $GLOBALS['wgHooks']['BaseTemplateToolbox'][] = function( BaseTemplate $baseTemplate, array &$toolbox ) {
        $toolbox['recentchanges'] = $baseTemplate->data['nav_urls']['specialpages'];
        $toolbox['recentchanges']['href'] = str_replace( ':SpecialPages', ':RecentChanges', $toolbox['recentchanges']['href'] );
        $toolbox['recentchanges']['id'] = 't-recentchanges';
        $toolbox['recentchanges']['accesskey'] = 'r';
    };