--- loncom/interface/lontemplate.pm 2009/02/13 18:56:13 1.16 +++ loncom/interface/lontemplate.pm 2009/03/01 13:23:12 1.21 @@ -1,7 +1,7 @@ # The LearningOnline Network # "Template" Functions to generate html output # -# $Id: lontemplate.pm,v 1.16 2009/02/13 18:56:13 neumanie Exp $ +# $Id: lontemplate.pm,v 1.21 2009/03/01 13:23:12 neumanie Exp $ # # Copyright Michigan State University Board of Trustees # @@ -58,7 +58,7 @@ sub print_aboutme_content_template{ my ($r,$allowed,$target,$syllabusfields_ref,$syllabus_ref) = @_; my %syllabusfields = %{$syllabusfields_ref}; my %syllabus = %{$syllabus_ref}; - #&start_ContentBox($r,$allowed); + foreach my $field (sort(keys(%syllabusfields))) { if (($syllabus{$field}) || ($allowed)) { my $message=$syllabus{$field}; @@ -97,7 +97,7 @@ sub print_aboutme_content_template{ } } } - #&end_ContentBox($r); + } sub start_ContentBox{ @@ -113,10 +113,10 @@ sub end_ContentBox{ sub send_message{ my ($r,$cnum,$cdom) = @_; - my $image = qq{}; - $r->print('
'); - $r->print(&Apache::loncommon::messagewrapper($image,$cnum,$cdom).' '.&Apache::loncommon::messagewrapper(&mt('Send me a message'),$cnum,$cdom)); - $r->print('
'); + my $s; + my $image = qq{}; + $s=&Apache::loncommon::messagewrapper($image,$cnum,$cdom).' '.&Apache::loncommon::messagewrapper(&mt('Send me a message'),$cnum,$cdom); + return $s; } sub print_template @@ -124,10 +124,20 @@ sub print_template my ($r,$topic,$content, $allowed,$boxclass) = @_; $r->print('
'); $r->print('

'.$topic.'

'); - $r->print('
'.$content.'
'); + $r->print('

' .$content . '

'); + $r->print('
'); +} +sub print_start_template +{ + my ($r,$topic,$boxclass) = @_; + $r->print('
'); + $r->print('

'.$topic.'

'); +} +sub print_end_template +{ + my ($r) = @_; $r->print('
'); } - sub print_editbox_template { my ($r,$content,$field) = @_; @@ -136,5 +146,20 @@ sub print_editbox_template '
'); } - +sub print_start_page_functions +{ + my($r)=@_; + $r->print('
'. &mt('Functions') . ''); +} +sub print_functions_content +{ + my($r,$content) = @_; + $r->print('• '.$content.' '); + +} +sub print_end_page_functions +{ + my($r)=@_; + $r->print('
'); +} 1;