do not include .git directory
[catagits/Reaction.git] / lib / Reaction / UI / Widget / Field / Mutable / DateTime.pm
1 package Reaction::UI::Widget::Field::Mutable::DateTime;
2
3 use Reaction::UI::WidgetClass;
4
5 use namespace::clean -except => [ qw(meta) ];
6 extends 'Reaction::UI::Widget::Field::Mutable';
7
8
9
10 after fragment widget {
11    arg 'field_name' => event_id 'value_string';
12  };
13
14 __PACKAGE__->meta->make_immutable;
15
16
17 1;
18
19 __END__;
20
21 =head1 NAME
22
23 Reaction::UI::Widget::Field::Mutable::DateTime
24
25 =head1 DESCRIPTION
26
27 See L<Reaction::UI::Widget::Field::Mutable.>
28
29 =head1 FRAGMENTS
30
31 =head2 widget
32
33 Sets C<field_name> to the C<value_string> event id of the viewport.
34
35 =head2 field
36
37 C<content> contains viewport's C<value_string>.
38
39 =head1 AUTHORS
40
41 See L<Reaction::Class> for authors.
42
43 =head1 LICENSE
44
45 See L<Reaction::Class> for the license.
46
47 =cut