You are here

function tableform_element_info in Tableform 7

Implementation of hook_element_info();

File

./tableform.module, line 21

Code

function tableform_element_info() {
  $types['tableform'] = array(
    '#input' => TRUE,
    '#process' => array(
      'form_process_tableform',
    ),
    '#options' => array(),
    '#empty' => '',
    '#theme' => 'tableform',
    '#theme_wrappers' => array(
      'form_element',
    ),
  );
  return $types;
}