DeleteUserpage adds a button to delete a user's userpage on their contributions page.
Installation
Configuration
To configure the script, you can set the following keys in the window.DeleteUserpage object:
| Name | Type | What it does |
|---|---|---|
noConfirm
|
boolean | Controls if you get a confirmation for deleting/protecting the userpage |
deleteReason
|
string | Custom delete reason |
protectReason
|
string | Custom protection reason |
reason
|
string | Custom reason, used for both protecting and deleting, if a custom reason isn't set for that individual action |
protect
|
boolean | Switch to enable protection of the userpage after deletion, needs to be set to true to get the option to protect the page |
expiry
|
string | Custom protection length |
Here is an example configuration of the script using the variables above:
window.DeleteUserpage = {
noConfirm: true,
protect: true,
deleteReason: 'spam',
protectReason: 'spam',
expiry: '1 week'
}
Using configuration options with Fandom Developers Wiki scripts
The instructions on this page describe how to use configuration options with a script. Here on the Fandom Developers Wiki, many scripts provide optional configuration settings as a mean to alter or enhance the default behavior of the script. When installing configuration options in your JavaScript file, please note that they need to go above the import statement in order to work — unless the directions say otherwise. In case MediaWiki:ImportJS is used to load the scripts, it will be executed last.
// 1. AjaxRC import statement
importArticles({
type: 'script',
articles: [
'u:dev:MediaWiki:AjaxRC.js'
]
});
// 2. AjaxRC configuration option
window.ajaxRefresh = 30000;
// 1. AjaxRC configuration option
window.ajaxRefresh = 30000;
// 2. AjaxRC import statement
importArticles({
type: 'script',
articles: [
'u:dev:MediaWiki:AjaxRC.js'
]
});