Rose::HTML::Form::Field::Time::Seconds.3pm

Langue: en

Version: 2008-02-25 (mandriva - 01/05/08)

Section: 3 (Bibliothèques de fonctions)

NAME

Rose::HTML::Form::Field::Time::Seconds - Text field that only accepts valid seconds.

SYNOPSIS

     $field =
        Rose::HTML::Form::Field::Time::Seconds->new(
         label => 'Seconds', 
         name  => 'secs');
 
     $field->input_value(99);
     $field->validate; # 0
 
     $field->input_value(20);
     $field->validate; # 1
 
     print $field->html;
 
     ...
 
 

DESCRIPTION

Rose::HTML::Form::Field::Time::Seconds is a subclass of Rose::HTML::Form::Field::Text that only accepts valid seconds: numbers between 0 and 59, inclusive, with or without leading zeros.

AUTHOR

John C. Siracusa (siracusa@gmail.com) Copyright (c) 2008 by John C. Siracusa. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.