function theme_system_date_time_settings
Returns HTML for the date settings form.
Parameters
$variables: An associative array containing:
- form: A render element representing the form.
Related topics
File
-
modules/
system/ system.admin.inc, line 2095
Code
function theme_system_date_time_settings($variables) {
$form = $variables['form'];
$header = array(
t('Date type'),
t('Format'),
t('Operations'),
);
foreach (element_children($form['format']) as $key) {
$delete_key = $key . '_delete';
$row = array();
$row[] = $form['format'][$key]['#title'];
$form['format'][$key]['#title_display'] = 'invisible';
$row[] = array(
'data' => drupal_render($form['format'][$key]),
);
$row[] = array(
'data' => drupal_render($form['delete'][$delete_key]),
);
$rows[] = $row;
}
$output = theme('table', array(
'header' => $header,
'rows' => $rows,
'attributes' => array(
'id' => 'system-date-types',
),
));
$output .= drupal_render_children($form);
return $output;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.