Extension:ClickTracking
ClickTracking Release status: stable |
|
---|---|
Implementation | API |
Description | Track user clicks on JavaScript items |
Author(s) | Nimish Gautam, Trevor Parscal |
MediaWiki | 1.19.1 |
License | GPL v2 |
Download | README |
Translate the ClickTracking extension if it is available at translatewiki.net | |
Issues | Open tasks · Report a bug |
This feature is used to track users' navigation around the wiki by logging each click they make. It has a couple of API modules.
ClickTracking was developed specifically to be run as part of the Beta rollout (of the Vector skin and Enhanced editing toolbar in 2010) on Wikimedia wikis; it may or may not be useful to third-party users. The extension can of course be run on non-WMF wikis, but documentation is very limited.
ClickTracking logs the user's edit counts using functionality and a database table implemented by Extension:UserDailyContribs, so you need to install that as well.
If you are upgrading from the UsabilityInitiative (MediaWiki 1.16 compatible) version, you may need to pay attention to the change in naming for configuration variables.
See README for an example.Installation
- Get the extension with distributor or git and drop it into MediaWiki directory /extensions
- Setup your LocalSettings.php:
require_once( "$IP/extensions/UserDailyContribs/UserDailyContribs.php" );
require_once( "$IP/extensions/ClickTracking/ClickTracking.php" );
for more details about the settings see the README file.
- Run
php maintenance/update.php
from the command line (see update.php and also here)