summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ContributionScores/extension.json')
-rw-r--r--ContributionScores/extension.json64
1 files changed, 64 insertions, 0 deletions
diff --git a/ContributionScores/extension.json b/ContributionScores/extension.json
new file mode 100644
index 00000000..31743eaf
--- /dev/null
+++ b/ContributionScores/extension.json
@@ -0,0 +1,64 @@
+{
+ "name": "ContributionScores",
+ "author": "Tim Laqua",
+ "url": "https://www.mediawiki.org/wiki/Extension:Contribution_Scores",
+ "descriptionmsg": "contributionscores-desc",
+ "version": "1.26.1",
+ "type": "specialpage",
+ "requires": {
+ "MediaWiki": ">= 1.34.0"
+ },
+ "SpecialPages": {
+ "ContributionScores": "ContributionScores"
+ },
+ "AutoloadClasses": {
+ "ContributionScores": "src/ContributionScores.php"
+ },
+ "Hooks": {
+ "ParserFirstCallInit": "ContributionScores::onParserFirstCallInit"
+ },
+ "MessagesDirs": {
+ "ContributionScores": [
+ "i18n"
+ ]
+ },
+ "ExtensionMessagesFiles": {
+ "ContribScoreAlias": "ContributionScores.alias.php",
+ "ContribScoreMagic": "ContributionScores.i18n.magic.php"
+ },
+ "config": {
+ "ContribScoreReports": {
+ "value": null,
+ "description": "Each array defines a report - 7,50 is \"past 7 days \" and \"LIMIT 50 \" - Can be omitted."
+ },
+ "ContribScoreIgnoreBlockedUsers": {
+ "value": false,
+ "description": "Set to true to exclude blocked users from the reporting."
+ },
+ "ContribScoreIgnoreBots": {
+ "value": false,
+ "description": "Set to true to exclude bots users from the reporting."
+ },
+ "ContribScoreIgnoreUsernames": {
+ "value": [],
+ "description": "Array of usernames to exclude from the reporting."
+ },
+ "ContribScoresUseRealName": {
+ "value": false,
+ "description": "Set to true to use real user names when available."
+ },
+ "ContribScoreDisableCache": {
+ "value": false,
+ "description": "Set to true to disable cache for parser function and inclusion of table."
+ },
+ "ContribScoreUseRoughEditCount": {
+ "value": false,
+ "description": "Set to true to use the rough number of edits in user table, for performance issue."
+ },
+ "ContribScoreCacheTTL": {
+ "value": 30,
+ "description": "Cache the contribution scores data, in minutes."
+ }
+ },
+ "manifest_version": 2
+}