Extension:Editcount
Jump to navigation
Jump to search
Editcount Release status: stable |
|
---|---|
Implementation | Special page |
Description | Displays the edit count of a user |
Author(s) | Ævar Arnfjörð Bjarmason |
MediaWiki | 1.25+ |
Database changes | No |
License | GNU General Public License 2.0 or later |
Download | |
Example | Central Wikia |
Translate the Editcount extension if it is available at translatewiki.net | |
Issues | Open tasks · Report a bug |
The Editcount extension adds a special page that displays edit counts. This special page can be accessed from Special:Editcount[/user]
as well as being included like {{Special:Editcount/user[/namespace]}}
.
Installation[edit]
- Download and place the file(s) in a directory called
Editcount
in yourextensions/
folder. - Add the following code at the bottom of your LocalSettings.php:
wfLoadExtension( 'Editcount' );
Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
To users running MediaWiki 1.25 or earlier:
The instructions above describe the new way of installing this extension using wfLoadExtension()
.
If you need to install this extension on these earlier versions (MediaWiki 1.25 and earlier), instead of wfLoadExtension( 'Editcount' );
, you need to use:
require_once "$IP/extensions/Editcount/Editcount.php";
See also[edit]
- Extension:CreatedPagesList - special page that displays the list of articles created by user.