function theme_upload_form_current in Drupal 6
Same name and namespace in other branches
- 4 modules/upload.module \theme_upload_form_current()
- 5 modules/upload/upload.module \theme_upload_form_current()
Theme the attachments list.
Related topics
File
- modules/
upload/ upload.module, line 524 - File-handling and attaching files to nodes.
Code
function theme_upload_form_current($form) {
$header = array(
'',
t('Delete'),
t('List'),
t('Description'),
t('Weight'),
t('Size'),
);
drupal_add_tabledrag('upload-attachments', 'order', 'sibling', 'upload-weight');
foreach (element_children($form) as $key) {
// Add class to group weight fields for drag and drop.
$form[$key]['weight']['#attributes']['class'] = 'upload-weight';
$row = array(
'',
);
$row[] = drupal_render($form[$key]['remove']);
$row[] = drupal_render($form[$key]['list']);
$row[] = drupal_render($form[$key]['description']);
$row[] = drupal_render($form[$key]['weight']);
$row[] = drupal_render($form[$key]['size']);
$rows[] = array(
'data' => $row,
'class' => 'draggable',
);
}
$output = theme('table', $header, $rows, array(
'id' => 'upload-attachments',
));
$output .= drupal_render($form);
return $output;
}