Search results for "module:CGI::FormBuilder"

lib/CGI/FormBuilder.pm River stage two • 11 direct dependents • 16 total dependents

BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 UTC

CGI::FormBuilder::Test - Test harness for FormBuilder River stage two • 11 direct dependents • 16 total dependents

BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 UTC

CGI::FormBuilder::Util - Utility functions for FormBuilder River stage two • 11 direct dependents • 16 total dependents

This module exports some common utility functions for FormBuilder. These functions are intended for internal use, however I must admit that, from time to time, I just import this module and use some of the routines directly (like "htmltag()" to gener...

BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 UTC

CGI::FormBuilder::Field - Base class for FormBuilder fields River stage two • 11 direct dependents • 16 total dependents

This module is internally used by FormBuilder to create and maintain field information. Usually, you will not want to directly access this set of data structures. However, one big exception is if you are going to micro-control form rendering. In this...

BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 UTC

CGI::FormBuilder::Multi - Create multi-page FormBuilder forms River stage two • 11 direct dependents • 16 total dependents

This module works with "CGI::FormBuilder" to create multi-page forms. Each form is specified using the same options you would pass directly into FormBuilder. See CGI::FormBuilder for a list of these options. The multi-page "meta-form" is a composite ...

BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 UTC

CGI::FormBuilder::Source - Source adapters for FormBuilder River stage two • 11 direct dependents • 16 total dependents

This documentation describes the usage of FormBuilder sources, as well as how to write your own source adapter. An external source is invoked by using the "source" option to the top-level "new()" method: my $form = CGI::FormBuilder->new( source => 's...

BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 UTC

CGI::FormBuilder::Messages - Localized message support for FormBuilder River stage two • 11 direct dependents • 16 total dependents

This module handles localization for FormBuilder. It is invoked by specifying the "messages" option to FormBuilder's "new()" method. Currently included with FormBuilder are several different locales: English (default) en_US Danish da_DK German/Deutsc...

BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 UTC

CGI::FormBuilder::Template - Template adapters for FormBuilder River stage two • 11 direct dependents • 16 total dependents

This documentation describes the usage of FormBuilder templates, as well as how to write your own template adapter. The template engines serve as adapters between CPAN template modules and FormBuilder. A template engine is invoked by using the "templ...

BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 UTC

CGI::FormBuilder::Source::YAML - Initialize FormBuilder from YAML file River stage zero No dependents

This reads a YAML (YAML::Syck) file that contains FormBuilder config options and returns a hash to be fed to CGI::FormBuilder->new(). Instead of the syntax read by CGI::FormBuilder::Source::File, it uses YAML syntax as read by YAML::Syck. That means ...

MARKLE/CGI-FormBuilder-Source-YAML-1.0.8 - 17 Nov 2007 21:49:59 UTC

CGI::FormBuilder::Source::File - Initialize FormBuilder from external file River stage two • 11 direct dependents • 16 total dependents

This parses a file that contains FormBuilder configuration options, and returns a hash suitable for creating a new $form object. Usually, you should not use this directly, but instead pass a $filename into "CGI::FormBuilder", which calls this module....

BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 UTC

CGI::FormBuilder::Source::Perl - read FormBuilder config from Perl syntax files River stage one • 1 direct dependent • 2 total dependents

This module allows you to specify the config for a CGI::FormBuilder object using Perl syntax. The contents of the config file will be "eval"ed and the hash ref returned will be used as the config for the object....

EVDB/CGI-FormBuilder-Source-Perl-0.01 - 19 Oct 2008 11:05:46 UTC

CGI::FormBuilder::Template::Div - Div HTML rendering River stage two • 11 direct dependents • 16 total dependents

This module provides default rendering for FormBuilder. It is automatically called by FormBuilder's "render()" method if no external template is specified. See the documentation in CGI::FormBuilder for more details....

BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 UTC

CGI::FormBuilder::Template::TT2 - FormBuilder interface to Template Toolkit River stage two • 11 direct dependents • 16 total dependents

This engine adapts FormBuilder to use "Template Toolkit". To do so, specify the "template" option as a hashref which includes the "type" option set to "TT2" and the "template" option set to the name of the template you want processed. You can also ad...

BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 UTC

CGI::FormBuilder::Template::HTC River stage zero No dependents

This engine adapts FormBuilder to use HTML::Template::Compiled. It works similar to CGI::FormBuilder::Template::TT2, not like CGI::FormBuilder::Template::HTML, because HTC can use the dot-syntax for accessing hash-keys....

TINITA/CGI-FormBuilder-Template-HTC-0.02 - 23 Nov 2006 19:03:38 UTC

CGI::FormBuilder::Template::Text - FormBuilder interface to Text::Template River stage two • 11 direct dependents • 16 total dependents

This engine adapts FormBuilder to use "Text::Template". Usage is very similar to Template Toolkit: my $form = CGI::FormBuilder->new( fields => \@fields, template => { type => 'Text', # use Text::Template template => 'form.tmpl', } ); The default opti...

BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 UTC

CGI::FormBuilder::Template::Fast - FormBuilder interface to CGI::FastTemplate River stage two • 11 direct dependents • 16 total dependents

This engine adapts FormBuilder to use "CGI::FastTemplate". Please read these docs carefully, as the usage differs from other template adapters in several important ways. You will need to define three templates: "form", "field", and "invalid_field". Y...

BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 UTC

CGI::FormBuilder::Template::HTML - FormBuilder interface to HTML::Template River stage two • 11 direct dependents • 16 total dependents

This engine adapts FormBuilder to use "HTML::Template". "HTML::Template" is the default template option and is activated one of two ways. Either: my $form = CGI::FormBuilder->new( fields => \@fields, template => 'form.tmpl', ); Or, you can specify an...

BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 UTC

CGI::FormBuilder::Config::Simple - deploy web forms w/ .ini file River stage zero No dependents

HESCO/CGI-FormBuilder-Config-Simple-0.12 - 04 May 2010 16:25:22 UTC

CGI::FormBuilder::Template::Builtin - Builtin HTML rendering River stage two • 11 direct dependents • 16 total dependents

This module provides default rendering for FormBuilder. It is automatically called by FormBuilder's "render()" method if no external template is specified. See the documentation in CGI::FormBuilder for more details....

BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 UTC

CGI::FormBuilder::Template::CGI_SSI - FormBuilder interface to CGI::SSI River stage two • 11 direct dependents • 16 total dependents

This engine adapts FormBuilder to use "CGI::SSI". You can specify any options which "CGI::SSI->new" accepts by using a hashref: my $form = CGI::FormBuilder->new( fields => \@fields, template => { type => 'CGI::SSI', file => 'form.shtml', sizefmt => '...

BIGPRESH/CGI-FormBuilder-3.10 - 16 Aug 2016 23:59:06 UTC
67 results (0.036 seconds)