function advpoll_views_active_field_handler in Advanced Poll 5
Views handler to format the "active" status field.
1 string reference to 'advpoll_views_active_field_handler'
File
- ./
advpoll_views.inc, line 195
Code
function advpoll_views_active_field_handler($fieldinfo, $fielddata, $value, $data) {
return $value ? t('Open') : t('Closed');
}