summaryrefslogtreecommitdiff
path: root/fml/lib/FML/CGI/MLAdmin/MenuOld.pm
blob: 9e7ad987fb8d8a2da8ebcb9b4ab64a5b2f327b39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#-*- perl -*-
#
#  Copyright (C) 2002,2003,2004 Ken'ichi Fukamachi
#   All rights reserved. This program is free software; you can
#   redistribute it and/or modify it under the same terms as Perl itself.
#
# $FML: MenuOld.pm,v 1.4 2004/10/09 12:06:44 fukachan Exp $
#

package FML::CGI::MLAdmin::MenuOld;
use strict;
use Carp;
use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD);
use CGI qw/:standard/; # load standard CGI routines

use FML::CGI::Skin::OldFashion;
@ISA = qw(FML::CGI::Skin::OldFashion);


=head1 NAME

FML::CGI::MLAdmin::MenuOld - provides CGI controll for the specific ML.

=head1 SYNOPSIS

    $obj = new FML::CGI::MLAdmin::MenuOld;
    $obj->prepare();
    $obj->verify_request();
    $obj->run();
    $obj->finish();

run() executes html_start(), run_cgi() and html_end() described below.

See L<FML::Process::Flow> for flow details.

=head1 DESCRIPTION

=head2 CLASS HIERARCHY

C<FML::CGI::MLAdmin::MenuOld> is a subclass of C<FML::Process::CGI>.

             FML::Process::Kernel
                       |
                       A
             FML::Process::CGI::Kernel
                       |
                       A
             FML::Process::CGI
                       |
                       A
            -----------------------
           |                       |
           A                       A
     FML::CGI::MenuOld          FML::CGI::MenuOld
           |                       |
           A                       A
 FML::CGI::MLAdmin::MenuOld    FML::CGI::MLMLAdmin::MenuOld

=head1 METHODS

Almost methods common for CGI or HTML are forwarded to
C<FML::Process::CGI> base class.

This module has routines needed for the admin CGI.

=head1 SEE ALSO

L<CGI>,
L<FML::Process::CGI>
and
L<FML::Process::Flow>

=head1 CODING STYLE

See C<http://www.fml.org/software/FNF/> on fml coding style guide.

=head1 AUTHOR

Ken'ichi Fukamachi

=head1 COPYRIGHT

Copyright (C) 2002,2003,2004 Ken'ichi Fukamachi

All rights reserved. This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.

=head1 HISTORY

FML::CGI::MLAdmin::MenuOld first appeared in fml8 mailing list driver package.
See C<http://www.fml.org/> for more details.

=cut


1;