Index: trunk/extensions/ContributionScores/ContributionScores.php |
— | — | @@ -22,11 +22,13 @@ |
23 | 23 | |
24 | 24 | define( 'CONTRIBUTIONSCORES_MAXINCLUDELIMIT', 50 ); |
25 | 25 | $wgContribScoreReports = null; |
26 | | -$wgContribScoreIgnoreBlockedUsers = false; |
27 | | -$wgContribScoreIgnoreBots = false; |
28 | | -$wgContribScoresUseRealName = false; |
29 | | -$wgContribScoreDisableCache = false; |
30 | 26 | |
| 27 | +// These settings can be overridden in LocalSettings.php. |
| 28 | +$wgContribScoreIgnoreBlockedUsers = false; // Set to true to exclude bots from the reporting. |
| 29 | +$wgContribScoreIgnoreBots = false; // Set to true to exclude blocked users from the reporting. |
| 30 | +$wgContribScoresUseRealName = false; // Set to true to use real user names when available. Only for MediaWiki 1.19 and later. |
| 31 | +$wgContribScoreDisableCache = false; // Set to true to disable cache for parser function and inclusion of table. |
| 32 | + |
31 | 33 | $wgAutoloadClasses['ContributionScores'] = $dir . 'ContributionScores_body.php'; |
32 | 34 | $wgSpecialPages['ContributionScores'] = 'ContributionScores'; |
33 | 35 | $wgSpecialPageGroups['ContributionScores'] = 'wiki'; |