You are here

function _email_verify_get_header in Email Verify 8.2

Same name and namespace in other branches
  1. 7.2 email_verify.check.inc \_email_verify_get_header()

Returns the header to use for the display table.

Return value

array The header to use.

1 call to _email_verify_get_header()
email_verify_user_check_form in ./email_verify.check.inc
Look though the users table for invalid emails.

File

./email_verify.check.inc, line 385
User email check menu callback file for email_verify module.

Code

function _email_verify_get_header() {
  return array(
    'uid' => array(
      'data' => t('User Id'),
      'field' => 'uid',
    ),
    'name' => array(
      'data' => t('Name'),
      'field' => 'name',
    ),
    'mail' => array(
      'data' => t('Email address'),
      'field' => 'mail',
    ),
    'reason' => array(
      'data' => t('Reason'),
    ),
    'account' => array(
      'data' => t(''),
    ),
  );
}