file-widget-multiple.func.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for bootstrap_file_widget_multiple().
  5. */
  6. /**
  7. * Returns HTML for a group of file upload widgets.
  8. *
  9. * @param array $variables
  10. * An associative array containing:
  11. * - element: A render element representing the widgets.
  12. *
  13. * @return string
  14. * The constructed HTML.
  15. *
  16. * @see theme_file_widget_multiple()
  17. *
  18. * @ingroup theme_functions
  19. */
  20. function bootstrap_file_widget_multiple(array $variables) {
  21. $element = $variables['element'];
  22. // Special ID and classes for draggable tables.
  23. $weight_class = $element['#id'] . '-weight';
  24. $table_id = $element['#id'] . '-table';
  25. // Build up a table of applicable fields.
  26. $headers = array();
  27. $headers[] = t('File information');
  28. if ($element['#display_field']) {
  29. $headers[] = array(
  30. 'data' => t('Display'),
  31. 'class' => array('checkbox'),
  32. );
  33. }
  34. $headers[] = t('Weight');
  35. $headers[] = t('Operations');
  36. // Get our list of widgets in order (needed when the form comes back after
  37. // preview or failed validation).
  38. $widgets = array();
  39. foreach (element_children($element) as $key) {
  40. $widgets[] = &$element[$key];
  41. }
  42. usort($widgets, '_field_sort_items_value_helper');
  43. $rows = array();
  44. foreach ($widgets as $key => &$widget) {
  45. // Save the uploading row for last.
  46. if (!isset($widget['#file']) || $widget['#file'] === FALSE) {
  47. $widget['#title'] = $element['#file_upload_title'];
  48. $widget['#description'] = $element['#file_upload_description'];
  49. continue;
  50. }
  51. // Delay rendering of the buttons, so that they can be rendered later in the
  52. // "operations" column.
  53. $operations_elements = array();
  54. foreach (element_children($widget) as $sub_key) {
  55. if (isset($widget[$sub_key]['#type']) && $widget[$sub_key]['#type'] == 'submit') {
  56. hide($widget[$sub_key]);
  57. $operations_elements[] = &$widget[$sub_key];
  58. }
  59. }
  60. // Delay rendering of the "Display" option and the weight selector, so that
  61. // each can be rendered later in its own column.
  62. if ($element['#display_field']) {
  63. hide($widget['display']);
  64. }
  65. hide($widget['_weight']);
  66. // Render everything else together in a column, without the normal wrappers.
  67. $widget['#theme_wrappers'] = array();
  68. $information = drupal_render($widget);
  69. // Render the previously hidden elements, using render() instead of
  70. // drupal_render(), to undo the earlier hide().
  71. $operations = '';
  72. foreach ($operations_elements as $operation_element) {
  73. $operation_element['#attributes']['class'][] = 'btn-xs';
  74. switch ($operation_element['#value']) {
  75. case t('Remove'):
  76. $operation_element['#icon'] = _bootstrap_icon('remove');
  77. break;
  78. }
  79. $operations .= render($operation_element);
  80. }
  81. $display = '';
  82. if ($element['#display_field']) {
  83. unset($widget['display']['#title']);
  84. $display = array(
  85. 'data' => render($widget['display']),
  86. 'class' => array('checkbox'),
  87. );
  88. }
  89. $widget['_weight']['#attributes']['class'] = array($weight_class);
  90. $weight = render($widget['_weight']);
  91. // Arrange the row with all of the rendered columns.
  92. $row = array();
  93. $row[] = $information;
  94. if ($element['#display_field']) {
  95. $row[] = $display;
  96. }
  97. $row[] = $weight;
  98. $row[] = $operations;
  99. $rows[] = array(
  100. 'data' => $row,
  101. 'class' => isset($widget['#attributes']['class']) ? array_merge($widget['#attributes']['class'], array('draggable')) : array('draggable'),
  102. );
  103. }
  104. drupal_add_tabledrag($table_id, 'order', 'sibling', $weight_class);
  105. $output = '';
  106. if (!empty($rows)) {
  107. $table = array(
  108. '#theme' => 'table',
  109. '#header' => $headers,
  110. '#rows' => $rows,
  111. '#attributes' => array(
  112. 'id' => $table_id,
  113. 'class' => array(
  114. 'managed-files',
  115. ),
  116. ),
  117. );
  118. $output = drupal_render($table);
  119. }
  120. $output .= drupal_render_children($element);
  121. return $output;
  122. }