MediaWiki:Gadget-mySandbox.js: Difference between revisions

From [N8]
Jump to navigation Jump to search
m Undo revision 2392 by Banri (talk)
Tag: Undo
mNo edit summary
Line 13: Line 13:
// Costomize/Translate this to your needs
// Costomize/Translate this to your needs
conf = {
conf = {
subpageName: 'Sandbox',
subpageName: 'sandbox',
portletLabel: 'Sandbox',
portletLabel: 'sandbox',
portletTooltip: 'Go to your sandbox',
portletTooltip: 'Go to your sandbox',
editintroPagename: 'Template:User_Sandbox',
editintroPagename: 'Template:User_sandbox',
preloadPagename: 'Template:User_Sandbox/preload'
preloadPagename: 'Template:User_sandbox/preload'
};
};
// Don't alter the code below
// Don't alter the code below

Revision as of 16:54, 7 March 2020

/**
 * 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 ) );