############################################################ # #
検索フォームを表示します。
#
# {{search}}
#
# サイドバーに表示する場合はvオプションをつけてください。
#
# {{search v}}
#
#
############################################################
package plugin::search::SearchForm;
use strict;
#===========================================================
# コンストラクタ
#===========================================================
sub new {
my $class = shift;
my $self = {};
return bless $self,$class;
}
#===========================================================
# 検索フォーム
#===========================================================
sub paragraph {
my $self = shift;
my $wiki = shift;
my $way = shift;
if($way eq ""){
$way = "h";
}
my $buf = "\n";
return $buf;
}
1;