Fandom Developers Wiki

This script/stylesheet is for PERSONAL use only!

You are free to install this script/stylesheet for yourself, but it is not allowed to be used wiki-wide (e.g., in MediaWiki:ImportJS, MediaWiki:Common.js, MediaWiki:Common.css, MediaWiki:Fandomdesktop.js, MediaWiki:Fandomdesktop.css, or MediaWiki:FandomMobile.css), as it would violate Fandom's Terms of Use.
(See the customization policy)

OfficialWikisBadge allows users to define other wikis with the "Official Wiki Badge", like with the Official Wiki process, this is purely aesthetical and does not provide any benefits whatsoever.

Configuration

Before adding the import, you have the option to configure the script, whether to override the current default wiki list with your own list of wikis or to add wikis alongside the default list.

override
Whether to ignore the default list of wikis or not.
wikis
This is an array where each entry is entered with quotation marks/apostrophes, you will enter the wgWikiID of each wiki rather than the subdomain of the wiki.

This is a list that shows which wikis are defined as the default wikis within the script that will be granted the Official Wiki Badge upon installation, this includes the Community Central Wiki and its related interlanguage wikis, Developers Wiki, SOAP Wiki, Janitors Wiki, Gamepedia Help Wiki, Commons Wiki, the Portability Wiki, the UCP Internal Test Starter Wiki and the original Starter Wiki.

window.officialWikisBadge = {
	override: false,
	wikis: [
    	"dev", // Fandom Developers Wiki
        "help_gamepedia", // Gamepedia Help Wiki
        "infobox", // Portability Wiki
        "janitors", // Janitors Wiki
        "starter", // Starter Wiki
        "ucpinternalteststarter", // UCP Internal Test Starter Wiki
        "ucpinternalteststartercommons", // Commons Wiki
        "vstf", // SOAP Wiki
        "wikia", // Community Central
        "ca", // Catalan Community Wiki
        "de", // German Community Wiki
        "es", // Spanish Community Wiki
        "fiwikia", // Suomi Community Wiki
        "frfr", // French Community Wiki
        "idcommunity", // Bahasa Indonesian Community Wiki
        "it", // Italian Community Wiki
        "ja", // Japanese Community Wiki
        "kowikia", // Korean Community Wiki
        "nlwikia", // Dutch Community Wiki
        "plwikia", // Polish Community Wiki
        "ptcommunity", // Portuguese Community Wiki
        "ruwikia", // Russian Community Wiki
        "trcommunity", // Turkish Community Wiki
        "ukhelp", // Ukrainian Community Wiki
        "vicommunity", // Vietnamese Community Wiki
        "zh" // Mandarin Community Wiki
    ]
};

In this example the Minecraft Wiki, Terraria Wiki and the ARK Wiki are defined in the wikis array, these wikis will be given the badge alongside the default list as shown above.

window.officialWikisBadge = {
	override: false,
	wikis: [
    	"minecraft_gamepedia",
        "terraria_gamepedia",
        "arksurvivalevolved_gamepedia"
    ]
};

In this example the override value is set to true, where the Minecraft Wiki, Terraria Wiki and ARK Wiki will be the only wikis to be given the Official Wiki Badge and the default list will be ignored.

window.officialWikisBadge = {
	override: true,
	wikis: [
    	"minecraft_gamepedia",
        "terraria_gamepedia",
        "arksurvivalevolved_gamepedia"
    ]
};

Installation

Text above can be found here (edit)