webgui/lib/WebGUI/Macro/PageUrl.pm
Colin Kuskie d430f570f4 Added POD to several macros.
Updated POD in Storage/Iimage.pm

Internationalized error messages from RandomAssetProxy.
2005-12-20 17:55:46 +00:00

38 lines
953 B
Perl

package WebGUI::Macro::PageUrl;
#-------------------------------------------------------------------
# WebGUI is Copyright 2001-2005 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;
use WebGUI::Session;
use WebGUI::URL;
=head1 NAME
Package WebGUI::Macro::Page
=head1 DESCRIPTION
Macro for displaying the url for the current asset.
=head2 process ( )
process is really a wrapper around WebGUI::URL::page();
=cut
#-------------------------------------------------------------------
sub process {
return WebGUI::URL::page();
}
1;