webgui/lib/WebGUI/Macro/Extras.pm
2006-01-09 23:51:04 +00:00

37 lines
993 B
Perl

package WebGUI::Macro::Extras;
#-------------------------------------------------------------------
# WebGUI is Copyright 2001-2006 Plain Black Corporation.
#-------------------------------------------------------------------
# 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 strict;
=head1 NAME
Package WebGUI::Macro::Extras
=head1 DESCRIPTION
Macro for returning the extrasURL set up in the site's WebGUI.conf
file.
=head2 process
Returns the extrasURL. A trailing slash '/' is appended to the URL.
=cut
#-------------------------------------------------------------------
sub process {
my $session = shift;
return $session->config->get("extrasURL")."/";
}
1;