Please add new supported field widget - "fine_image" (module - Fine Image Upload, issue - https://www.drupal.org/node/2872933).
You can use patch in attached (new_supported_widget.patch).

CommentFileSizeAuthor
new_supported_widget.patch558 bytessemjuel
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

semjuel created an issue. See original summary.

ufku’s picture

Status: Active » Closed (won't fix)

You can alter supported widgets in your module by defining hook_imce_supported_widgets_alter()

fiu_imce_supported_widgets_alter(&$widgets) {
  $widgets[] = 'fine_image';
}
semjuel’s picture

@ufku Thank's.