GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
CGI::FCKeditor(3) User Contributed Perl Documentation CGI::FCKeditor(3)

CGI::FCKeditor - FCKeditor For OOP Module

  use CGI::FCKeditor;

  #Simple
  my $fck = CGI::FCKeditor->new();
  $fck->set_base('/FCKeditor/');  #FCKeditor Directory
  my $form_input_source = $fck->fck;    #output html source
  
  #Basic
  my $fck = CGI::FCKeditor->new();
  $fck->set_name('fck');        #HTML <input name>(default 'fck')
  $fck->set_base('/FCKeditor/');        #FCKeditor Directory
  $fck->set_set('Basic');       #FCKeditor Style(default 'Default')
  $fck->set_value('READ ME');   #input field default value(default '')
  my $form_input_source = $fck->fck;    #output html source
  
  #Short
  my $fck = CGI::FCKeditor->new('fck','/FCKeditor/','Basic','READ ME');
  my $form_input_source = $fck->fck;

CGI::FCKeditor is FCKeditor(http://www.fckeditor.net/) Controller for Perl OOP. FCKeditor(http://www.fckeditor.net/) is necessary though it is natural.

  my $fck = CGI::FCKeditor->new();

Constructs instance.

  $fck->set_name('fck');

Set <input name="fck"> on HTML source. Default 'fck'.

  $fck->set_base('/dir/FCKeditor/');

Set URL directory with fckeditor.js. Default '/FCKeditor'.

  $fck->set_width('100%');

Set FCKeditor Width. Default '100%'.

  $fck->set_height('500');

Set FCKeditor Height. Default '500'.

  $fck->set_set('Basic');

Set FCKeditor Style. Default 'Default'.

  $fck->set_value('Read ME');

Set <input value="Read ME"> on HTML source. Default ''.

  $form_input_source = $fck->fck;

FCKeditor Render on HTML.

Kazuma Shiraiwa

This module owes a lot in code to fckeditor.pl(Author:Takashi Yamaguchi) in FCKeditor_2.3.2.

Copyright (C) 2006 by Kazuma Shiraiwa. This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself.
2007-04-01 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.