Extension:LookupUser
From MediaWiki.org
|
LookupUser Release status: stable |
|
|---|---|
| Implementation | Special page |
| Description | Retrieve information about a user such as email address and ID |
| Author(s) | Tim Starling Talk |
| Download | 1.11 and higher - 1.10 and lower (changelog SVN) |
| Added rights | lookupuser |
LookupUser is an extension to retrieve information about a user such as email address, user ID and the user preferences, i.e. everything what the user has specified in his preferences.
[edit] Installation
- Create a new directory "LookupUser" in your "extensions" directory.
- Download from Subversion (1.11 and higher - 1.10 and lower), and put these files in the new "LookupUser" directory.
- Add this to your LocalSettings.php, somewhere near the bottom:
require_once("$IP/extensions/LookupUser/LookupUser.php");
- Under that line, you have to add who can use Special:LookupUser.
-
- If you want that sysops can use it:
$wgGroupPermissions['*']['lookupuser'] = false; $wgGroupPermissions['sysop']['lookupuser'] = true;
-
- If you want an additional user group: (those with the 'userrights' permission can assign this group - bureaucrats by default)
$wgGroupPermissions['*']['lookupuser'] = false; $wgGroupPermissions['lookupuser']['lookupuser'] = true;
[edit] Translate
LookupUser is translatable trough Betawiki.

