function stable_preprocess_image_widget

Same name and namespace in other branches
  1. 8.9.x core/themes/stable/stable.theme \stable_preprocess_image_widget()

Implements hook_preprocess_image_widget().

File

core/themes/stable/stable.theme, line 70

Code

function stable_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> ';
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.