You are here

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'
advpoll_views_tables in ./advpoll_views.inc

File

./advpoll_views.inc, line 195

Code

function advpoll_views_active_field_handler($fieldinfo, $fielddata, $value, $data) {
  return $value ? t('Open') : t('Closed');
}