The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

App::Widget::Hidden - An HTML hidden field

SYNOPSIS

$name = "first_name";

# official way
use App;
$context = App->context();
$w = $context->widget($name);
# OR ...
$w = $context->widget($name,
   class => "App::Widget::Hidden",
);

# internal way
use App::Widget::Hidden;
$w = App::Widget::Hidden->new($name);

DESCRIPTION

This class is a <input type=hidden> HTML element.