76 lines
2.7 KiB
Perl
76 lines
2.7 KiB
Perl
package WebGUI::Shortcut;
|
|
|
|
#-------------------------------------------------------------------
|
|
# WebGUI is Copyright 2001-2002 Plain Black Software.
|
|
#-------------------------------------------------------------------
|
|
# Please read the legal notices (docs/legal.txt) and the license
|
|
# (docs/license.txt) that came with this distribution before using
|
|
# this software.
|
|
#-------------------------------------------------------------------
|
|
# http://www.plainblack.com info@plainblack.com
|
|
#-------------------------------------------------------------------
|
|
|
|
use Exporter;
|
|
use strict;
|
|
use WebGUI::Attachment;
|
|
use WebGUI::International;
|
|
use WebGUI::Session;
|
|
|
|
our @ISA = qw(Exporter);
|
|
our @EXPORT = qw(&attachmentBox &formHeader &formSave &tableFormRow &helpLink);
|
|
|
|
# The subroutines found herein do nothing other than creating a
|
|
# short way of doing much longer repetitive tasks. They simply
|
|
# make the programmer's life easier through fewer keystrokes and
|
|
# less cluttered code.
|
|
|
|
|
|
#-------------------------------------------------------------------
|
|
sub attachmentBox {
|
|
my ($output, %fileType, $fileUrl);
|
|
$fileUrl = $session{setting}{attachmentDirectoryWeb}.'/'.$_[1].'/';
|
|
if ($_[2] ne "") {
|
|
$fileUrl .= $_[2].'/';
|
|
}
|
|
$fileUrl .= $_[0];
|
|
%fileType = WebGUI::Attachment::getType($_[0]);
|
|
$output = '<p><table cellpadding=3 cellspacing=0 border=1><tr><td class="tableHeader">'.
|
|
'<a href="'.$fileUrl.'"><img src="'.$session{setting}{lib}.'/attachment.gif" border=0 alt="'.
|
|
$_[0].'"></a></td><td><a href="'.$fileUrl.'"><img src="'.$fileType{icon}.
|
|
'" align="middle" width="16" height="16" border="0" alt="'.$_[0].'">'.$_[0].'</a></td></tr></table>';
|
|
return $output;
|
|
}
|
|
|
|
#-------------------------------------------------------------------
|
|
sub formHeader {
|
|
my ($output);
|
|
$output = '<form method="post" enctype="multipart/form-data" action="'.$session{page}{url}.'">';
|
|
return $output;
|
|
}
|
|
|
|
#-------------------------------------------------------------------
|
|
sub formSave {
|
|
my ($output);
|
|
$output = '<tr><td></td><td>'.WebGUI::Form::submit(WebGUI::International::get(62)).'</td></tr>';
|
|
return $output;
|
|
}
|
|
|
|
#-------------------------------------------------------------------
|
|
sub helpLink {
|
|
my ($output, $namespace);
|
|
$namespace = $_[1] || "WebGUI";
|
|
$output = '<a href="'.$session{page}{url}.'?op=viewHelp&hid='.$_[0].'&namespace='.$namespace.
|
|
'" target="_blank"><img src="'.$session{setting}{lib}.'/help.gif" border="0" align="right"></a>';
|
|
return $output;
|
|
}
|
|
|
|
#-------------------------------------------------------------------
|
|
sub tableFormRow {
|
|
my ($output);
|
|
$output = '<tr><td class="formDescription" valign="top">'.$_[0].'</td><td>'.$_[1].'</td></tr>';
|
|
return $output;
|
|
}
|
|
|
|
|
|
1;
|
|
|