You are here

function weekdays_element_info in Weekdays field 7

Implements hook_element_info().

Related topics

File

./weekdays.module, line 70

Code

function weekdays_element_info() {
  $types = array();
  $types['weekdays'] = array(
    '#input' => TRUE,
    '#multiple' => TRUE,
    '#process' => array(
      'weekdays_element_process',
    ),
    '#pre_render' => array(
      'form_pre_render_conditional_form_element',
    ),
    '#value_callback' => 'form_type_checkboxes_value',
  );
  return $types;
}