POD for four more files

This commit is contained in:
Colin Kuskie 2006-03-03 21:37:24 +00:00
parent 8a86fea5f0
commit 0b02edaea5
4 changed files with 187 additions and 0 deletions

View file

@ -17,6 +17,20 @@ use WebGUI::TabForm;
use WebGUI::International;
use WebGUI::SQL;
=head1 NAME
Package WebGUI::Operation::Settings
=head1 DESCRIPTION
Operation handler for sitewide settings for content, messaging, authentication, etc.
=head2 www_editSettings ( $session )
Display a form for sitewide settings, if the user is in group Admin (3).
=cut
#-------------------------------------------------------------------
sub www_editSettings {
my $session = shift;
@ -287,6 +301,13 @@ sub www_editSettings {
return $ac->render($tabform->print);
}
=head2 www_saveSettings ( $session )
Form postprocessor for www_editSettings. Returns adminOnly() unless the user
is in group Admin (3). Returns the user to the Edit Settings screen, www_editSettings.
=cut
#-------------------------------------------------------------------
sub www_saveSettings {
my $session = shift;