39 lines
1.1 KiB
Perl
39 lines
1.1 KiB
Perl
package WebGUI::Macro::c_companyName;
|
|
|
|
#-------------------------------------------------------------------
|
|
# WebGUI is Copyright 2001-2009 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::HTML;
|
|
|
|
=head1 NAME
|
|
|
|
Package WebGUI::Macro::c_companyName
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
Macro for displaying the Company Name entered into the WebGUI site settings
|
|
|
|
=head2 process ( )
|
|
|
|
returns the companyName from the session object.
|
|
|
|
=cut
|
|
|
|
#-------------------------------------------------------------------
|
|
sub process {
|
|
my $session = shift;
|
|
my $companyName = $session->setting->get("companyName");
|
|
WebGUI::HTML::makeParameterSafe(\$companyName);
|
|
return $companyName;
|
|
}
|
|
|
|
1;
|
|
|