| Class-DBI-FormTools documentation | view source | Contained in the Class-DBI-FormTools distribution. |
Class::DBI::FormTools - Build forms with multiple interconnected objects.
This document describes Class::DBI::FormTools version 0.0.3
package MyApp::Film;
use base 'Class::DBI::FormTools';
<%init>
my $o = Film->retrieve(42);
</%init>
<form>
<input name="<% $o->form_fieldname('title') %>" type="text" value="<% $o->title %>" />
</form>
On the receiving end:
my @objects = Class::DBI::FormTools->formdata_to_objects($quesrstring);
Alpha software - Highly experimental - Everything might change ;)
FIXME
FIXME
FIXME
Class::DBI::FormTools requires no configuration files or environment variables.
Class::DBI
None reported.
No bugs have been reported.
Please report any bugs or feature requests to
bug-class-dbi-formtools@rt.cpan.org, or through the web interface at
http://rt.cpan.org.
David Jack Olrik <david@olrik.dk>
Copyright (c) 2005-2010, David Jack Olrik <david@olrik.dk>.
All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.
| Class-DBI-FormTools documentation | view source | Contained in the Class-DBI-FormTools distribution. |