I love the fact that FCKeditor has image browsing/uploading built in (free) unlike TinyMCE! Great product!
Is there a chance that button code can be modified in a settings file? CodeIgniter is a great framework, but instead of FCKeditor inserting a standard html a href tag, could it dump custom php code? For example, this:
<a href="http://mysite.dev/my_page" style="linkstyle">My Link Description</a>
Re: Make button code created compatible with CodeIgniter?
You'd either need to:
- Write (or find) a plugin that will insert your custom link code
-OR-
- Write a PHP script that scans your content for <a> tags containing http://mysite.dev in the href, and replace the whole tag with your PHP block.
FCK's core would NEVER be modified to support a proprietary link system of one particular language/framework.
However, a nice new feature might be "templatable code" or something like that, allowing each button's outputted HTML to be templated in any way required for a particular framework. Perhaps this could be considered for v3.
As for finding a plugin to acheive this, a quick search found this:
http://labs.groupwave.be/index.php/2007 ... nal-links/
It's not exactly what you need. But you could use it as a base for writing your own plugin. Or you could keep searching
Re: Make button code created compatible with CodeIgniter?
Re: Make button code created compatible with CodeIgniter?