Catalyst-View-EmbeddedPerl-PerRequest-ValiantRole

 view release on metacpan or  search on metacpan

README.mkdn  view on Meta::CPAN

38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
which inherits from [Valiant::HTML::Util::TagBuilder](https://metacpan.org/pod/Valiant%3A%3AHTML%3A%3AUtil%3A%3ATagBuilder), this adds quite a few methods
to your namespace:
 
 
    tags tag content_tag join_tags text link_to
 
 
    field_value field_id field_name button_tag checkbox_tag fieldset_tag
    legend_tag form_tag label_tag radio_button_tag option_tag text_area_tag
    input_tag password_tag hidden_tag submit_tag select_tag options_for_select
    options_from_collection_for_select
 
 
    form_for fields_for
 
You will also have all the methods that are public for [Catalyst::View::EmbeddedPerl::PerRequest](https://metacpan.org/pod/Catalyst%3A%3AView%3A%3AEmbeddedPerl%3A%3APerRequest).
 
# HTML ESCAPING

lib/Catalyst/View/EmbeddedPerl/PerRequest/ValiantRole.pm  view on Meta::CPAN

5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 
our $VERSION = '0.001006';
eval $VERSION;
 
my @TAG_BUILDER = qw( tags tag content_tag join_tags text link_to );
 
my @FORM_TAGS = qw( field_value field_id field_name button_tag checkbox_tag fieldset_tag
        legend_tag form_tag label_tag radio_button_tag option_tag text_area_tag
        input_tag password_tag hidden_tag submit_tag select_tag options_for_select
        options_from_collection_for_select );
 
my @FORM = qw( form_for fields_for form_with fields );
 
my @PAGER = qw( pager_for );
 
has _form_helpers => (

lib/Catalyst/View/EmbeddedPerl/PerRequest/ValiantRole.pm  view on Meta::CPAN

123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
which inherits from L<Valiant::HTML::Util::TagBuilder>, this adds quite a few methods
to your namespace:
 
From L<Valiant::HTML::Util::TagBuilder>
 
    tags tag content_tag join_tags text link_to
 
From L<Valiant::HTML::Util::FormTags>
 
    field_value field_id field_name button_tag checkbox_tag fieldset_tag
    legend_tag form_tag label_tag radio_button_tag option_tag text_area_tag
    input_tag password_tag hidden_tag submit_tag select_tag options_for_select
    options_from_collection_for_select
 
From L<Valiant::HTML::Util::Form>
 
    form_for fields_for form_with fields
 
You will also have all the methods that are public for L<Catalyst::View::EmbeddedPerl::PerRequest>.
 
=head1 HTML ESCAPING



( run in 0.515 second using v1.01-cache-2.11-cpan-49f99fa48dc )