MediaWiki:Common.css

From luvBB
Revision as of 11:36, 18 September 2021 by WikiSysop (talk | contribs)
Jump to navigation Jump to search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
public static function onSkinTemplateNavigation( SkinTemplate &$sktemplate, array &$links ) {
    $links['namespaces'][] = array(
        'class' => 'test', // a css class, if you want
        'text' => 'Testtab', // That's the text visible to the user, you might want to use a message key, instead of a hardcoded text
        'href' => 'test', // That's the link the tab will redirect to, when clicked
    );
}