Mostly filebrowsers used with WYSIWYG editors to upload images and other files. There are two bundles to work with CKEditor available: TrsteelCKEditorBundle and FOSCKEditorBundle Both will work with this bundle.
Install both bundles according README files
trsteel_ckeditor:
...
filebrowser_image_browse_url:
route: elfinder
route_parameters:
instance: ckeditor
or if you prefer FOSCKEditorBundle
fos_ck_editor:
default_config: default
configs:
default:
filebrowserBrowseRoute: elfinder
filebrowserBrowseRouteParameters: []
Note that instance name should be the same as configured in elfinder bundle
// applies to Ivory CKEditor Bundle
$form = $this->createFormBuilder()
->add('content', 'ckeditor', array(
'config' => array(
'filebrowserBrowseRoute' => 'elfinder',
'filebrowserBrowseRouteParameters' => array(
'instance' => 'default',
'homeFolder' => ''
)
),
),
))
->getForm()
;
ElFinder will be available under Insert Image dialog