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
|
=head1 NAME
ModPerl::Const -- ModPerl Constants
=head1 Synopsis
# make the constants available but don't import them
use ModPerl::Const -compile => qw(constant names ...);
# w/o the => syntax sugar
use ModPerl::Const ("-compile", qw(constant names ...));
# compile and import the constants
use ModPerl::Const qw(constant names ...);
=head1 Description
This package contains constants specific to mod_perl features.
Refer to C<L<the Apache2::Const description
section|docs::2.0::api::Apache2::Const/Description>> for more
information.
=head1 Constants
=head2 Other Constants
=head3 C<ModPerl::EXIT>
=over
=item since: 2.0.00
=back
See C<L<ModPerl::Util::exit|docs::2.0::api::ModPerl::Util/C_exit_>>.
=head1 See Also
L<mod_perl 2.0 documentation|docs::2.0::index>.
=head1 Copyright
mod_perl 2.0 and its core modules are copyrighted under
The Apache Software License, Version 2.0.
=head1 Authors
L<The mod_perl development team and numerous
contributors|about::contributors::people>.
=cut
|