You are here

function registration_checkin_get_registration_table_headers in Entity Registration 7.2

Helper function to build registrant checkin table headers.

Return value

array A header array suitable for use with theme_table().

3 calls to registration_checkin_get_registration_table_headers()
registration_checkin_list_page in modules/registration_checkin/registration_checkin.pages.inc
Page callback: Show a list of active registrations that can be checked in.
registration_checkin_search_form_reset in modules/registration_checkin/registration_checkin.module
AJAX callback to reset the checkin table back to an unfiltered state.
registration_checkin_search_form_submit in modules/registration_checkin/registration_checkin.module
AJAX callback to update the registrant checkin table based on a search query.

File

modules/registration_checkin/registration_checkin.module, line 371
Entity Registration registrant checkin workflow and UI for registration.

Code

function registration_checkin_get_registration_table_headers() {
  $header = array(
    array(
      'data' => t('Registrant'),
    ),
    array(
      'data' => t('Email'),
    ),
    array(
      'data' => t('State'),
    ),
    array(
      'data' => t('Actions'),
    ),
  );
  return $header;
}