Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-07-05Update the link tag for all php files (#14635)Luca
I updated the link tag for all php files with the new matomo link. Not sure if it is realistic that this will get merged but I though that someday someone has to do this(?)
2019-05-28Ensure each plugin has a config.php and tracker.php file (#14430)Kate Butler
* Add empty config.php and tracker.php files to each plugin that doesn't have them; add to whitelist of files that are included in new plugins generated by generate:plugin * Add plugin files for plugins which were missing them
2015-11-12refs #9201 do not use DI for request processorsThomas Steur
2015-08-07Moving request metadata from VisitProperties to Tracker\Request class.diosmosis
2015-08-06Re-add Request parameter to RequestProcessor::recordLogs(), make GoalManager ↵diosmosis
stateless and store in DI, move logic in GoalManager that determined info about a tracking request to request metadata, change someGoalsConverted request metadata to goalsConverted metadata so we can see exactly which goals were converted.
2015-08-06Tweaking PingRequestProcessor, filling out missing docs and removing TODO ↵diosmosis
from VisitTest.php.
2015-08-06Document RequestProcessors and tweak some RequestProcessors.diosmosis
2015-08-06Change RequestProcessor method names and remove need to supply Request to ↵diosmosis
Visitor object.
2015-08-06Move last remaining ping request handling logic to PingRequestProcessor from ↵diosmosis
Visit::handle().
2015-08-06Move more conversion/actions related logic from Visit::handle() to plugin ↵diosmosis
specific RequestProcessors in manipulateVisitProperties method. Also temporarily made GoalManager a singleton that is set as a static var in GoalsRequestProcessor. Should be in DI, but until all of Visit::handle() is dealt w/, this can't be done.
2015-08-06Add new RequestProcessor to Actions plugin for action detection + new ↵diosmosis
RequestProcessor for ping request handling. Ping request handling is performed in new Heartbeat plugin. Also added a new method to Plugin, isTrackerPlugin for plugins to override if they are tracker plugins, but don't have a dimension or implement a tracker method.