5
Debconf::Element::Web::String - A text input field on a form
9
package Debconf::Element::Web::String;
11
use base qw(Debconf::Element);
15
This element handles a text input field on a web form.
23
Generates and returns html representing the text box.
30
$_=$this->question->extended_description;
35
$default=$this->question->value if defined $this->question->value;
37
$_.="<b>".$this->question->description."</b><input name=\"$id\" value=\"$default\">\n";
44
Joey Hess <joeyh@debian.org>