Opened 17 years ago
Last modified 14 years ago
#2561 closed New Feature
Converted fckeditor.pl into PERL module — at Initial Version
Reported by: | Doug Bierer | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | Server : Perl | Version: | FCKeditor 2.6.2 |
Keywords: | HasPatch | Cc: | alexchorny@… |
Description
# 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>