From ddf72f4c31485ebddeec88638babeac23f2e4621 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Fri, 16 Dec 2005 23:01:05 +0000 Subject: [PATCH] more POD docs, 101 to go --- lib/WebGUI/Macro/c_companyName.pm | 14 ++++++++++++++ lib/WebGUI/Macro/e_companyEmail.pm | 14 ++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/lib/WebGUI/Macro/c_companyName.pm b/lib/WebGUI/Macro/c_companyName.pm index 53a63eb8f..1712d56dd 100644 --- a/lib/WebGUI/Macro/c_companyName.pm +++ b/lib/WebGUI/Macro/c_companyName.pm @@ -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}; diff --git a/lib/WebGUI/Macro/e_companyEmail.pm b/lib/WebGUI/Macro/e_companyEmail.pm index 37c1dd154..1e20e97c3 100644 --- a/lib/WebGUI/Macro/e_companyEmail.pm +++ b/lib/WebGUI/Macro/e_companyEmail.pm @@ -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};