Flickr plugin for CKEditor / CKFinder

I did a google search and can't find anyone who knows if it exists or not?

Hopefully this will allow the user to select a photo from the flicker to put the correct URL in the ckeditor area .. and for the bonus it would be cool if they could view the image that would be published for the flicker and put in the editor with the correct URL , and

more info it seems there are several flickr plugins that do what I want in wordpress, but not for ckeditor or ckfinder. I wonder if anyone knows how I can use one of the wordpress plugins outside of wordpress?

+4
source share
1 answer

Indeed, I only know Wordpress plugins such as Wordpress Flickr Manager . By reading the source code, you could understand how it works and implement your own. I have used this plugin in the past and am doing exactly what you want, a flickr photo in the editor with the correct URL.

Start with FlickrManager.php , function manage_page() , the default value in switch , this is where the plugin shows the panel for adding an image to the message: it creates the short code value in your message, so be sure to check the function image_shortcode() in the same module.

+1
source

All Articles