Difference between revisions of "MediaWiki:Gadget-mySandbox.js"

From Pirate Party Belgium
Jump to: navigation, search
(imported from https://en.wikipedia.org/wiki/MediaWiki:Gadget-mySandbox.js)
 
 
Line 5: Line 5:
 
  * | Please discuss changes on the talk page or on [[WT:Gadget]] before editing. |
 
  * | Please discuss changes on the talk page or on [[WT:Gadget]] before editing. |
 
  * |_____________________________________________________________________________|
 
  * |_____________________________________________________________________________|
 +
* This gadget was removed on 11th December 2016
 +
* The gadget was replaced by https://www.mediawiki.org/wiki/Extension:SandboxLink
 
  */
 
  */
  

Latest revision as of 09:51, 11 December 2016

/*  _____________________________________________________________________________
 * |                                                                             |
 * |                    === WARNING: GLOBAL GADGET FILE ===                      |
 * |                  Changes to this page affect many users.                    |
 * | Please discuss changes on the talk page or on [[WT:Gadget]] before editing. |
 * |_____________________________________________________________________________|
 * This gadget was removed on 11th December 2016
 * The gadget was replaced by https://www.mediawiki.org/wiki/Extension:SandboxLink
 */


/**
 * Add a "My sandbox" link to the personal portlet menu.
 * Dependencies: mediawiki.util, mediawiki.Title, mediawiki.Uri
 *
 * @source mediawiki.org/wiki/Snippets/MySandbox
 * @version 2
 */
( function ( mw, $ ) {

	$( document ).ready( function () {
		var conf, title, url;

		// Costomize/Translate this to your needs
		conf = {
			subpageName: 'sandbox',
			portletLabel: 'Sandbox',
			portletTooltip: 'Go to your sandbox',
			editintroPagename: 'Template:User_sandbox',
			preloadPagename: 'Template:User_sandbox/preload'
		};
		// Don't alter the code below

		// Use Special:MyPage (as opposed to mw.user.getName()) so that it
		// works for logged-out users as well.
		title = new mw.Title( 'Special:MyPage/' + conf.subpageName );

		url = new mw.Uri( title.getUrl() );
		url.extend({
			action: 'edit',
			redlink: 1,
			editintro: new mw.Title( conf.editintroPagename ),
			preload: new mw.Title( conf.preloadPagename )
		});

		mw.util.addPortletLink(
			'p-personal',
			url,
			conf.portletLabel,
			'pt-mysandbox',
			conf.portletTooltip,
			null,
			'#pt-preferences'
		);
	});
}( mediaWiki, jQuery ) );