You are here

function bartik_preprocess_image_widget in Drupal 9

Same name and namespace in other branches
  1. 10 core/themes/bartik/bartik.theme \bartik_preprocess_image_widget()

Implements hook_preprocess_image_widget().

@todo Revisit in https://drupal.org/node/3117430

File

core/themes/bartik/bartik.theme, line 175
Functions to support theming in the Bartik theme.

Code

function bartik_preprocess_image_widget(&$variables) {
  if (!empty($variables['element']['fids']['#value'])) {
    $file = reset($variables['element']['#files']);
    $variables['data']["file_{$file->id()}"]['filename']['#suffix'] = ' <span class="file-size">(' . format_size($file
      ->getSize()) . ')</span> ';
  }
}