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