Converted fckeditor.pl into PERL module
# Usage:
# 1. Put this command at the top of your PERL program:
#
# use FCKeditor;
#
# 2. Where you want to place the FCKeditor in your output,
# call FCKeditor::create() as follows:
#
# $html_string = FCKeditor::create($InstanceName,$BasePath);
#
# This will produce an HTML string which effectively replaces
# a <textarea name=$InstanceName></textarea> field in your form.
# Note that there are a few other parameters which you can
# specify in the create() call, noted below. Height and
# width, for example.
#
# You can then integrate this HTML code directly into your
# Output. For example:
#
# use FCKeditor;
# print 'content-type: text/html\n\n';
# print '<html><body><form method=get action="this.pl">';
# print '<p>Enter Your Message Here:</p>';
# print FCKeditor::create();
# print '<input type=submit name="OK" value="OK">';
# print '</form></body></html>';
#
# Or you could send the string to the Template module,
# depending on how you output your HTML. Your return CGI
# program will then look for a parameter "editor", which is
# the default (see $InstanceName).
<a href="http://www.unlikelysource.com/perl_demo/html_email.pl">Demo of FCKeditor running with PERL</a>
<a href="http://www.unlikelysource.com/perl_demo/FCKeditor.pm">FCKeditor PERL module</a>
Change History (6)
Keywords: |
HasPatch added; FCKeditor PERL module removed
|
Description: |
modified (diff)
|
Milestone: |
FCKeditor 2.6.4
|
Resolution: |
→ invalid
|
Status: |
new →
closed
|
modified module