Stats guide
Setting up the Stats database table
Creating a StatsEvent
<?php
namespace CherrycakeApp;
class StatsEventHomeView extends \Cherrycake\Stats\StatsEvent {
protected $timeResolution = \Cherrycake\Stats\STATS_EVENT_TIME_RESOLUTION_DAY;
protected $typeDescription = "Home view";
}Triggering a Stats event
What's the difference between a LogEvent and a StatsEvent?
Last updated