function signup_object_info in Signup 6
Same name and namespace in other branches
- 6.2 signup.module \signup_object_info()
Deprecated implmentation of hook_object_info().
This is the old name for hook_views_bulk_operations_object_info(). It was renamed in VBO at http://drupal.org/node/362534 to prevent possible namespace colisions. However, it means that modules supporting VBO need to have both implementations during the transition while users upgrade to VBO version 6.x-1.4. Once 6.x-1.4 is ubiquitous, this can be removed.
File
- ./
signup.module, line 965 - The Signup module (http://drupal.org/project/signup) manages replies to nodes. In particular, it's good for event management. Signup supports sending reminder emails and automatically closing signups for nodes with a start time, via the Event…
Code
function signup_object_info() {
return signup_views_bulk_operations_object_info();
}