/lib/HTML/FormHandler/Base.pm

http://github.com/gshank/html-formhandler · Perl · 15 lines · 8 code · 4 blank · 3 comment · 0 complexity · ad4840b13462ba73958051f465e97d3c MD5 · raw file

  1. package HTML::FormHandler::Base;
  2. # ABSTRACT: stub
  3. use Moose;
  4. with 'HTML::FormHandler::Widget::Form::Simple';
  5. # here to make it possible to combine the Blocks role with a role
  6. # setting the render_list without an 'excludes'
  7. sub has_render_list { }
  8. sub build_render_list {[]}
  9. __PACKAGE__->meta->make_immutable;
  10. use namespace::autoclean;
  11. 1;