You are here

function email_elements in Email Field 6

Implementation of FAPI hook_elements().

File

./email.module, line 178

Code

function email_elements() {
  return array(
    'email_textfield' => array(
      '#input' => TRUE,
      '#columns' => array(
        'email',
      ),
      '#delta' => 0,
      '#process' => array(
        'email_textfield_process',
      ),
    ),
  );
}