it's pretty easy to do. just add a column called hits to keep track on number of event views.
Query:
Code:
ALTER TABLE event ADD hits INT(7) NOT NULL;
Open calendar.php,
FIND:
PHP Code:
if (!empty($eventarray))
ABOVE, ADD:
PHP Code:
//event viewing counter by tnguy3n
$DB_site->query("
UPDATE " . TABLE_PREFIX . "event
SET hits=hits+1
WHERE eventid = $eventid
");
// end counter
that's it.
well, if you wish to post it as a hack release, few free to.