File tree 5 files changed +41
-1
lines changed
5 files changed +41
-1
lines changed Original file line number Diff line number Diff line change @@ -134,6 +134,17 @@ sub call {
134
134
}
135
135
}
136
136
137
+ =head2 handle ($session)
138
+
139
+ Process the list of content handlers from the config file and then evaluate any Template objects which
140
+ may have been returned.
141
+
142
+ =head3 $session
143
+
144
+ A WebGUI::Session object.
145
+
146
+ =cut
147
+
137
148
sub handle {
138
149
my ( $self , $session ) = @_ ;
139
150
Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ use WebGUI::Command -command;
14
14
use strict;
15
15
use warnings;
16
16
17
+ =head2 opt_spec
18
+
19
+ Return a set of options to WebGUI::Command so that it knows how to process command line options.
20
+
21
+ =cut
22
+
17
23
sub opt_spec {
18
24
return (
19
25
[ ' configFile=s' , ' The WebGUI config file to use. This parameter is required.' ],
@@ -26,6 +32,12 @@ sub opt_spec {
26
32
);
27
33
}
28
34
35
+ =head2 validate_args
36
+
37
+ Check for mandatory command line options
38
+
39
+ =cut
40
+
29
41
sub validate_args {
30
42
my ($self , $opt , $args ) = @_ ;
31
43
if (! $opt -> {configfile }) {
Original file line number Diff line number Diff line change @@ -336,6 +336,14 @@ sub getDatabaseFieldType {
336
336
return " CHAR(255)" ;
337
337
}
338
338
339
+ # -------------------------------------------------------------------
340
+
341
+ =head2 getLabel ( )
342
+
343
+ Gets the label for this form control, including any configured hover help.
344
+
345
+ =cut
346
+
339
347
sub getLabel {
340
348
my ( $self ) = @_ ;
341
349
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ sub www_genesis {
40
40
41
41
# -------------------------------------------------------------------
42
42
43
- =head2 theWg ( )
43
+ =head2 www_theWg ( )
44
44
45
45
The core WebGUI function. All WebGUI Assets, Operations and functions require this
46
46
to work, even superseding the session variable.
Original file line number Diff line number Diff line change 14
14
15
15
WebGUI::Upgrade::File::txt - Upgrade class for text documents
16
16
17
+ Displays the text document to the user, and then after a keypress, continues on to the
18
+ next upgarde file.
19
+
17
20
=cut
18
21
19
22
package WebGUI::Upgrade::File::txt ;
20
23
use Moose;
21
24
with ' WebGUI::Upgrade::File' ;
22
25
26
+ =head2 once
27
+
28
+ Override the default so that the text is only displayed once.
29
+
30
+ =cut
31
+
23
32
sub once { 1 }
24
33
25
34
sub run {
You can’t perform that action at this time.
0 commit comments