Extension:SpecialWantedImages
From MediaWiki.org
|
Special:WantedImages Release status: beta |
|
|---|---|
| Implementation | Special page |
| Description | Adds a special page to list the most wanted images. |
| Author(s) | user:Ozz |
| Last version | 0.3 |
| MediaWiki | works with 1.11 and above |
| License | GPL |
| Download | SpecialWantedImages |
| Example | see #Sites using this extension |
|
Check usage (experimental) |
|
This is an extension to add a Special:WantedImages page to MediaWiki, to view the most wanted images. Its is a modification of Extension:SpecialWantedtemplates, which was made by Eric Larcher.
[edit] Installation
- Download WantedImages.zip (see the infobox for download links), and unzip this archive. Copy the directory 'SpecialWantedImages' in your 'extensions directory.
- Add the following sentence to your LocalSettings.php, somewhere near the bottom:
require_once( "$IP/extensions/SpecialWantedImages/SpecialWantedImages.php" );
- Under the previous line, you have to specifie who can use Special:WantedImages.
-
- If you want that sysops can use it:
$wgGroupPermissions['*']['wantedimages'] = false; $wgGroupPermissions['sysop']['wantedimages'] = true;
-
- If you want an additional user group, for example bureaucrats add:
$wgGroupPermissions['bureaucrat']['wantedtemplates'] = true;
You can define threshold, by setting $wgWantedImagesThreshold to you need. Default is 1.
$wgWantedImagesThreshold =10;
[edit] Changes
- 10.04.2008 release Version 0.1
- 20.08.2008 release Version 0.3 (works now with MW 1.11,MW 1.12,W 1.13)
