function invite_cron in Invite 5
Same name and namespace in other branches
- 7.4 invite.module \invite_cron()
Implementation of hook_cron().
File
- ./
invite.module, line 282 - Allows your users to send and track invitations to join your site.
Code
function invite_cron() {
// TODO: cron should check which invitations are expired and possibly send a follow up mail
// This should also trigger a module_invoke_all('invite', 'expire', $args) call so that other modules can
// react to the expired invitation.
}