function Notifications_Event::track_count in Notifications 7
Same name and namespace in other branches
- 6.4 includes/notifications_event.class.inc \Notifications_Event::track_count()
Track notifications queue row processed, decrease counter
File
- ./
notifications.event.inc, line 389 - Drupal Notifications Framework - Default class file
Class
- Notifications_Event
- Notifications Event class
Code
function track_count() {
return $this->counter ? --$this->counter : 0;
}