more POD docs, 101 to go

This commit is contained in:
Colin Kuskie 2005-12-16 23:01:05 +00:00
parent 80c3f027f2
commit ddf72f4c31
2 changed files with 28 additions and 0 deletions

View file

@ -13,6 +13,20 @@ package WebGUI::Macro::c_companyName;
use strict;
use WebGUI::Session;
=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 variable.
=cut
#-------------------------------------------------------------------
sub process {
return $session{setting}{companyName};

View file

@ -13,6 +13,20 @@ package WebGUI::Macro::e_companyEmail;
use strict;
use WebGUI::Session;
=head1 NAME
Package WebGUI::Macro::e_companyEmail
=head1 DESCRIPTION
Macro for displaying the Company Email entered into the WebGUI site settings
=head2 process ( )
returns the companyEmail from the session variable.
=cut
#-------------------------------------------------------------------
sub process {
return $session{setting}{companyEmail};