Activity Report
Number of events scheduled for the current month, by type
report_monthly_activity();
if ( count( $rows ) ) {
foreach ( $rows as $row ) {
echo '' . $row->cnt . ' ' . $row->category . $this->plural($row->cnt) . '
';
}
} else {
echo 'No events this month';
}
?>