TinyMCPUK - TinyMCE with file/image manager

TinyMCPUK brings you the powerful TinyMCE plus the MCPUK file manager and ImageManager strictly integrated together.

Details

TinyFCK package contains:

  • a TinyMCE release (absolutely not patched, this is the original TinyMCE)
  • a patched version of Martin Kronstad’s MCPUK/ImageManager integration
  • an example documenting configuration

TinyKCPUK is only available for PHP.

Screenshots

Download

TinyMCPUK 0.1 is updated with TinyMCE 2.0.6.1.

Support - Forum - Bug report - Feature request

Please post everything to the TinyMCE and FCKeditor authors, remember we only did the integration and nothig more.

The integration code: fileBrowserCallBack

You can find this code in the example included in the package, anyway for a better documentation here you have the details.

Add this function to the javascript code where you call TinyMCE:

function fileBrowserCallBack(field_name, url, type, win) {
	// due to mcpuk bug with firefox please tiny the absolute path to the connector, something like:
	// var connector = "http://localhost/tinymcpuk/filemanager/browser.html?Connector=http://localhost/tinymcpuk/filemanager/connectors/php/connector.php";
	var connector = "../../filemanager/browser.html?Connector=connectors/php/connector.php";
	var enableAutoTypeSelection = true;
	
	var cType;
	tinymcpuk_field = field_name;
	tinymcpuk = win;
	
	switch (type) {
		case "image":
			cType = "Image";
			break;
		case "flash":
			cType = "Flash";
			break;
		case "file":
			cType = "File";
			break;
	}
	
	if (enableAutoTypeSelection && cType) {
		connector += "&Type=" + cType;
	}
	
	window.open(connector, "tinymcpuk", "modal,width=600,height=400");
}

TinyMCE compressor and spellchecker

Because TinyMCPUK contains a TinyMCE without patches, you can use TinyMCE compressor and spellchecker if you want. Find them and download at: http://tinymce.moxiecode.com/download.php

License

TinyMCPUK is released under GNU LGPL license.

Authors

Copyrights are holded by the authors of FCKEditor, TinyMCE, MCPUK, ImageManager and the first integrator Martin Kronstad at the same way of support, what we’ve done is only integrate the projects.

The idea of TinyMCPUK and the integration is developed by CreaLabs.

 
tinymcpuk.txt · Last modified: 2007/02/19 09:03 by p4a
 
Creative Commons License Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki