Extension:Editcount/ca
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 | |
Check usage and version matrix. | |
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]}}
.
Instal·lació
- 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";