file-widget.func.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for bootstrap_file_widget().
  5. */
  6. /**
  7. * Returns HTML for an individual file upload widget.
  8. *
  9. * @param array $variables
  10. * An associative array containing:
  11. * - element: A render element representing the widget.
  12. *
  13. * @return string
  14. * The constructed HTML.
  15. *
  16. * @see theme_file_widget()
  17. *
  18. * @ingroup theme_functions
  19. */
  20. function bootstrap_file_widget(array $variables) {
  21. $output = '';
  22. $element = $variables['element'];
  23. $element['upload_button']['#attributes']['class'][] = 'btn-primary';
  24. $element['upload_button']['#prefix'] = '<span class="input-group-btn">';
  25. $element['upload_button']['#suffix'] = '</span>';
  26. // The "form-managed-file" class is required for proper Ajax functionality.
  27. if (!empty($element['filename'])) {
  28. $output .= '<div class="file-widget form-managed-file clearfix">';
  29. // Add the file size after the file name.
  30. $element['filename']['#markup'] .= ' <span class="file-size badge">' . format_size($element['#file']->filesize) . '</span>';
  31. }
  32. else {
  33. $output .= '<div class="file-widget form-managed-file clearfix input-group">';
  34. }
  35. // Immediately render hidden elements before the rest of the output.
  36. // The uploadprogress extension requires that the hidden identifier input
  37. // element appears before the file input element. They must also be siblings
  38. // inside the same parent element.
  39. // @see https://www.drupal.org/node/2155419
  40. foreach (element_children($element) as $child) {
  41. if (isset($element[$child]['#type']) && $element[$child]['#type'] === 'hidden') {
  42. $output .= drupal_render($element[$child]);
  43. }
  44. }
  45. // Render the rest of the element.
  46. $output .= drupal_render_children($element);
  47. $output .= '</div>';
  48. return $output;
  49. }