kumara/C4/Output.pm
1999-11-09 22:41:41 +00:00

149 lines
3 KiB
Perl

package C4::Output; #asummes C4/Output
#package to deal with marking up output
use strict;
require Exporter;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
# set the version for version checking
$VERSION = 0.01;
@ISA = qw(Exporter);
@EXPORT = qw(&startpage &endpage &mktablehdr &mktableft &mktablerow &mklink
&startmenu &endmenu &mkheadr &center &endcenter &mkform &bold);
%EXPORT_TAGS = ( ); # eg: TAG => [ qw!name1 name2! ],
# your exported package globals go here,
# as well as any optionally exported functions
@EXPORT_OK = qw($Var1 %Hashit);
# non-exported package globals go here
use vars qw(@more $stuff);
# initalize package globals, first exported ones
my $Var1 = '';
my %Hashit = ();
# then the others (which are still accessible as $Some::Module::stuff)
my $stuff = '';
my @more = ();
# all file-scoped lexicals must be created before
# the functions below that use them.
# file-private lexicals go here
my $priv_var = '';
my %secret_hash = ();
# here's a file-private function as a closure,
# callable as &$priv_func; it cannot be prototyped.
my $priv_func = sub {
# stuff goes here.
};
# make all your functions, whether exported or not;
sub startpage{
my $string="<html>\n";
return($string);
}
sub startmenu{
open (FILE,'/usr/local/www/hdl/htdocs/includes/cat-top.inc');
my @string=<FILE>;
close FILE;
my $count=@string;
$string[$count]="<BLOCKQUOTE>";
return @string;
}
sub endmenu{
open (FILE,'/usr/local/www/hdl/htdocs/includes/cat-bottom.inc');
my @string=<FILE>;
close FILE;
return @string;
}
sub mktablehdr {
my $string="<table border=0 cellspacing=0 cellpadding=5>\n";
return($string);
}
sub mktablerow {
my ($cols,$colour,@data)=@_;
my $i=0;
my $string="<tr valign=top bgcolor=$colour>";
while ($i <$cols){
$string=$string."<td>$data[$i]</td>";
$i++;
}
$string=$string."</tr>\n";
return($string);
}
sub mktableft {
my $string="</table>\n";
return($string);
}
sub mkform{
my ($action,%inputs)=@_;
my $string="<form action=$action method=post>\n";
$string=$string.mktablehdr();
my $key;
while ( my ($key, $value) = each %inputs) {
$string=$string.mktablerow(2,'white',$key,"<input type=text name=$key value=\"$value\">");
}
$string=$string.mktablerow(2,'white','<input type=submit>','<input type=reset>');
$string=$string.mktableft;
$string=$string."</form>";
}
sub endpage{
my $string="</body></html>\n";
return($string);
}
sub mklink {
my ($url,$text)=@_;
my $string="<a href=$url>$text</a>";
return ($string);
}
sub mkheadr {
my ($type,$text)=@_;
my $string;
if ($type eq '1'){
$string="<FONT SIZE=6><em>$text</em></FONT><br>";
}
return ($string);
}
sub center {
my ($text)=@_;
my $string="<CENTER>\n";
return ($string);
}
sub endcenter {
my ($text)=@_;
my $string="</CENTER>\n";
return ($string);
}
sub bold {
my ($text)=@_;
my $string="<b>$text</b>";
return($string);
}
END { } # module clean-up code here (global destructor)