How can I show all media in embed preview?

rhodes

Active member
When I click on the camera symbol (Media gallery embed) to embed a movie in my post a preview is shown below the textarea showing the movies I've uploaded.

In my forum all movies are public youtube videos and I would like to show all of them in the embed preview for all registered users. Any ideas how I can do this?
 
XenGallery_ControllerPublic_Media::actionEditorBrowser() is probably a good place to start.

If you're ok with code modifications, you can probably just get away with removing this line:
PHP:
'user_id' => $visitor->user_id,
 
Top Bottom