You are here

function invite_get_status_options in Invite 7.4

Helper function to return the list of status option.

2 calls to invite_get_status_options()
Invite::status in includes/invite.controller.inc
views_handler_field_invite_status::render in views/handlers/views_handler_field_invite_status.inc
Render.
1 string reference to 'invite_get_status_options'
invite_views_data_alter in ./invite.module
Implements hook_views_data_alter().

File

./invite.module, line 767

Code

function invite_get_status_options() {
  return array(
    INVITE_VALID => t('Valid'),
    INVITE_WITHDRAWN => t('Withdrawn'),
    INVITE_USED => t('Joined'),
    INVITE_EXPIRED => t('Expired'),
  );
}