';
$self->{fck} = $Html;
return $self->{fck};
}
1;
__END__
=head1 NAME
CGI::FCKeditor - FCKeditor For OOP Module
=head1 SYNOPSIS
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 (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;
=head1 DESCRIPTION
CGI::FCKeditor is FCKeditor(http://www.fckeditor.net/) Controller for Perl OOP.
FCKeditor(http://www.fckeditor.net/) is necessary though it is natural.
=head1 METHODS
=head2 new
my $fck = CGI::FCKeditor->new();
Constructs instance.
=head2 set_name
$fck->set_name('fck');
Set on HTML source.
Default 'fck'.
=head2 set_base
$fck->set_base('/dir/FCKeditor/');
Set URL directory with fckeditor.js.
Default '/FCKeditor'.
=head2 set_width
$fck->set_width('100%');
Set FCKeditor Width.
Default '100%'.
=head2 set_height
$fck->set_height('500');
Set FCKeditor Height.
Default '500'.
=head2 set_set
$fck->set_set('Basic');
Set FCKeditor Style.
Default 'Default'.
=head2 set_value
$fck->set_value('Read ME');
Set on HTML source.
Default ''.
=head2 fck
$form_input_source = $fck->fck;
FCKeditor Render on HTML.
=head1 AUTHOR
Kazuma Shiraiwa
This module owes a lot in code to
fckeditor.pl(Author:Takashi Yamaguchi) in FCKeditor_2.3.2.
=head1 COPYRIGHT AND LICENSE
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.
=cut