User:PrimeHunter/Wikidata search.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:PrimeHunter/Wikidata search. |
/* This script adds a Tools link saying "Wikidata search" to search Wikidata (see [[WP:Wikidata]])
for the current page name.
It also works on red links. If it finds a suitable result with an article in another language
then consider using [[Template:Interlanguage link]] on an English article with the red link.
If a page has a Wikidata item then MediaWiki adds a "Wikidata item" link under "In other projects".
The script still adds the search link which may find other related Wikidata items.
To use the script, add the following line to [[Special:MyPage/common.js]]:
importScript('User:PrimeHunter/Wikidata search.js'); // Linkback: [[User:PrimeHunter/Wikidata search.js]]
*/
mw.loader.using(['mediawiki.util'], function () {
mw.util.addPortletLink(
'p-tb',
'//www.wikidata.org/wiki/Special:Search?search=' + encodeURIComponent( mw.config.get('wgPageName') ),
'Wikidata search',
't-wikidatasearch',
'Search the page name in Wikidata',
null,
'#t-cite'
);
});