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