NAME

HTML::FormFu::Inflator::DateTime - DateTime inflator

SYNOPSIS

---
elements:
  - type: text
    name: start_date
    inflators:
      - type: DateTime
        parser: 
          strptime: '%d-%m-%Y'
  - type: text
    name: end_time
    inflators:
      - type: DateTime
        parser:
          regex: '^ (\d{2}) - (\d{2}) - (\d{4}) $'
          params: [day, month, year]

DESCRIPTION

DateTime inflator.

AUTHOR

Carl Franks, cfranks@cpan.org

LICENSE

This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.