function invite_stats_theme in Invite 6.2
Same name and namespace in other branches
- 7.2 modules/invite_stats/invite_stats.module \invite_stats_theme()
Implementation of hook_theme().
File
- ./
invite_stats.module, line 11 - Displays some statistics about sent invitations.
Code
function invite_stats_theme() {
return array(
'invite_stats_ranking' => array(
'arguments' => array(
'inviters' => NULL,
'rank' => 1,
),
),
'invite_stats_count' => array(
'arguments' => array(
'count' => NULL,
),
),
);
}