You are here

function fiu_ui_preprocess_fine_image_widget in Fine Image Upload 8.2

Implements template_preprocess_fine_image_widget().

File

fiu_ui/fiu_ui.module, line 37
General functions and hook implementations.

Code

function fiu_ui_preprocess_fine_image_widget(&$variables) {
  $status = \Drupal::config('fiu_ui.settings')
    ->get('status');
  if ($status) {
    $variables['#attached']['library'][] = 'fiu_ui/settings';
  }
}