[MediaWiki-l] How to disable Printable version link on my extension's Special page?

2013-07-06 Thread Adam Nielsen
Hi all, I'm working on an extension that uses a Preview button, the same as on edit pages. Unfortunately the shortcut key for the button conflicts with the Printable version link in the navigation bar, effectively preventing the keyboard shortcut from working at all. The edit page does not have

Re: [MediaWiki-l] How to disable Printable version link on my extension's Special page?

2013-07-06 Thread Benjamin Lees
$wgHooks['BaseTemplateToolbox'][] = 'eWhateverBaseTemplateToolbox'; function efWhateverBaseTemplateToolbox ( $tpl, $toolbox ) { if( //check whether it's your extension's page ) { unset($toolbox['print']); } return true; } ___

Re: [MediaWiki-l] How to disable Printable version link on my extension's Special page?

2013-07-06 Thread Adam Nielsen
$wgHooks['BaseTemplateToolbox'][] = 'eWhateverBaseTemplateToolbox'; function efWhateverBaseTemplateToolbox ( $tpl, $toolbox ) { if( //check whether it's your extension's page ) { unset($toolbox['print']); } return true; } Brilliant, works like a charm! I just had to