NAME
Form::DemonCore - The demon core of form managements
VERSION
version 0.101
SYNOPSIS
use Form::DemonCore;
my $form = Form::DemonCore->factory({
name => 'testform',
fields => [
{
name => 'testfield',
notempty => 1,
},
],
input_values => {
testform => 1,
testform_testfield => "test",
},
session => $session,
});
if (my $result = $form->result) {
$form->clear_form; # to reset all values to default
...
}
SUPPORT
IRC
Join #demoncore on irc.perl.org.
Repository
http://github.com/Getty/p5-form-demoncore
Pull request and additional contributors are welcome
Issue Tracker
http://github.com/Getty/p5-form-demoncore/issues
AUTHOR
Torsten Raudssus <torsten@raudss.us> http://raudss.us/
COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Raudssus Social Software.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.