function signup_format_date in Signup 5.2
Same name and namespace in other branches
- 6.2 includes/scheduler.inc \signup_format_date()
- 6 includes/scheduler.inc \signup_format_date()
- 7 includes/scheduler.inc \signup_format_date()
2 calls to signup_format_date()
- signup_admin_form_extra in ./
signup.module - _signup_get_email_tokens in ./
signup.module - Helper function that returns an array of tokens for signup emails.
File
- includes/
scheduler.inc, line 109 - Code necessary to determine which scheduler backend(s) to use.
Code
function signup_format_date($node) {
switch (_signup_get_node_scheduler($node)) {
case 'event':
return _signup_event_format_date($node);
case 'date':
return _signup_date_format_date($node);
default:
return t('[Untimed]');
}
}