image-widget.func.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for bootstrap_image_widget().
  5. */
  6. /**
  7. * Returns HTML for an image field widget.
  8. *
  9. * @param array $variables
  10. * An associative array containing:
  11. * - element: A render element representing the image field widget.
  12. *
  13. * @return string
  14. * The constructed HTML.
  15. *
  16. * @see theme_image_widget()
  17. *
  18. * @ingroup theme_functions
  19. */
  20. function bootstrap_image_widget(array $variables) {
  21. $element = $variables['element'];
  22. $output = '';
  23. $output .= '<div class="image-widget form-managed-file clearfix">';
  24. if (isset($element['preview'])) {
  25. $output .= '<div class="image-preview">';
  26. $output .= drupal_render($element['preview']);
  27. $output .= '</div>';
  28. }
  29. $output .= '<div class="image-widget-data">';
  30. if (!empty($element['fid']['#value'])) {
  31. $element['filename']['#markup'] = '<div class="form-group">' . $element['filename']['#markup'] . ' <span class="file-size badge">' . format_size($element['#file']->filesize) . '</span></div>';
  32. }
  33. $output .= drupal_render_children($element);
  34. $output .= '</div>';
  35. $output .= '</div>';
  36. return $output;
  37. }