| Quizzer documentation | Contained in the Quizzer distribution. |
Quizzer::Element::Web::Text - A paragraph on a form
This element handles a paragraph of text on a web form.
Generates and returns html for the paragraph of text.
| Quizzer documentation | Contained in the Quizzer distribution. |
#!/usr/bin/perl -w
package Quizzer::Element::Web::Text; use strict; use Quizzer::Element; use vars qw(@ISA); @ISA=qw(Quizzer::Element); my $VERSION='0.01';
sub show { my $this=shift; $_=$this->question->extended_description; s/\n/\n<br>\n/g; $_.="\n<p>\n"; return "<b>".$this->question->description."</b>$_<p>"; } 1