file-upload-help.func.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for bootstrap_file_upload_help().
  5. */
  6. /**
  7. * Returns HTML for help text based on file upload validators.
  8. *
  9. * @param array $variables
  10. * An associative array containing:
  11. * - description: The normal description for this field, specified by the
  12. * user.
  13. * - upload_validators: An array of upload validators as used in
  14. * $element['#upload_validators'].
  15. *
  16. * @return string
  17. * The constructed HTML.
  18. *
  19. * @see theme_file_upload_help()
  20. *
  21. * @ingroup theme_functions
  22. */
  23. function bootstrap_file_upload_help(array $variables) {
  24. // If popover's are disabled, just theme this normally.
  25. if (!bootstrap_setting('popover_enabled')) {
  26. return theme_file_upload_help($variables);
  27. }
  28. $build = array();
  29. if (!empty($variables['description'])) {
  30. $build['description'] = array(
  31. '#markup' => $variables['description'] . '<br>',
  32. );
  33. }
  34. $descriptions = array();
  35. $upload_validators = $variables['upload_validators'];
  36. if (isset($upload_validators['file_validate_size'])) {
  37. $descriptions[] = t('Files must be less than !size.', array('!size' => '<strong>' . format_size($upload_validators['file_validate_size'][0]) . '</strong>'));
  38. }
  39. if (isset($upload_validators['file_validate_extensions'])) {
  40. $descriptions[] = t('Allowed file types: !extensions.', array('!extensions' => '<strong>' . check_plain($upload_validators['file_validate_extensions'][0]) . '</strong>'));
  41. }
  42. if (isset($upload_validators['file_validate_image_resolution'])) {
  43. $max = $upload_validators['file_validate_image_resolution'][0];
  44. $min = $upload_validators['file_validate_image_resolution'][1];
  45. if ($min && $max && $min == $max) {
  46. $descriptions[] = t('Images must be exactly !size pixels.', array('!size' => '<strong>' . $max . '</strong>'));
  47. }
  48. elseif ($min && $max) {
  49. $descriptions[] = t('Images must be between !min and !max pixels.', array('!min' => '<strong>' . $min . '</strong>', '!max' => '<strong>' . $max . '</strong>'));
  50. }
  51. elseif ($min) {
  52. $descriptions[] = t('Images must be larger than !min pixels.', array('!min' => '<strong>' . $min . '</strong>'));
  53. }
  54. elseif ($max) {
  55. $descriptions[] = t('Images must be smaller than !max pixels.', array('!max' => '<strong>' . $max . '</strong>'));
  56. }
  57. }
  58. if ($descriptions) {
  59. $id = drupal_html_id('upload-instructions');
  60. $build['instructions'] = array(
  61. '#theme' => 'link__file_upload_requirements',
  62. // @todo remove space between icon/text and fix via styling.
  63. '#text' => _bootstrap_icon('question-sign') . ' ' . t('More information'),
  64. '#path' => '#',
  65. '#options' => array(
  66. 'attributes' => array(
  67. 'data-toggle' => 'popover',
  68. 'data-target' => "#$id",
  69. 'data-html' => TRUE,
  70. 'data-placement' => 'bottom',
  71. 'data-title' => t('File requirements'),
  72. ),
  73. 'html' => TRUE,
  74. 'external' => TRUE,
  75. ),
  76. );
  77. $build['requirements'] = array(
  78. '#theme_wrappers' => array('container__file_upload_requirements'),
  79. '#attributes' => array(
  80. 'id' => $id,
  81. 'class' => array('element-invisible', 'help-block'),
  82. ),
  83. );
  84. $build['requirements']['validators'] = array(
  85. '#theme' => 'item_list__file_upload_requirements',
  86. '#items' => $descriptions,
  87. );
  88. }
  89. return drupal_render($build);
  90. }