Ticket #2561 (new New Feature)

Opened 3 months ago

Last modified 7 weeks ago

Converted fckeditor.pl into PERL module

Reported by: dbierer Owned by:
Priority: Normal Milestone:
Component: Server : Perl Version: FCKeditor 2.6.2
Keywords: HasPatch Cc:

Description (last modified by fredck) (diff)

#  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>

Attachments

FCKeditor.pm (5.6 KB) - added by dbierer 3 months ago.

Change History

Changed 3 months ago by dbierer

Changed 3 months ago by arczi

  • keywords HasPatch added; FCKeditor PERL module removed

Changed 7 weeks ago by fredck

  • description modified (diff)
  • milestone FCKeditor 2.6.4 deleted
Note: See TracTickets for help on using tickets.