function _simplenews_handler_send_status_data in Simplenews 5
Helper function for send status handlers
2 calls to _simplenews_handler_send_status_data()
- simplenews_handler_filter_send_status in ./
simplenews_views.inc - Views filter handler for newsletter send status
- simplenews_handler_send_status in ./
simplenews_views.inc - Views field handler for newsletter send status
File
- ./
simplenews_views.inc, line 69 - simplenews_views.inc Views support for simplenews
Code
function _simplenews_handler_send_status_data() {
return array(
0 => t('Not sent'),
1 => t('Pending'),
2 => t('Sent'),
);
}