Apache2-ASP
view release on metacpan or search on metacpan
lib/Apache2/ASP/ConfigPostProcessor.pm view on Meta::CPAN
8910111213141516171819202122232425262728#==============================================================================
sub
new
{
my
(
$class
,
%args
) =
@_
;
return
bless
\
%args
,
$class
;
}
# end new()
#==============================================================================
sub
post_process($$);
1;
# return true:
=pod
=head1 NAME
Apache2::ASP::ConfigPostProcessor - Base class for configuration post-processors
=head1 SYNOPSIS
lib/Apache2/ASP/GlobalASA.pm view on Meta::CPAN
45464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
${
"$class\::Session"
} =
$context
->session;
${
"$class\::Application"
} =
$context
->application;
${
"$class\::Config"
} =
$context
->config;
${
"$class\::Form"
} =
$context
->request->Form;
${
"$class\::Stash"
} =
$context
->stash;
}
# end foreach()
}
# end init_asp_objects()
#==============================================================================
sub
Application_OnStart()
{
}
# end Application_OnStart()
#==============================================================================
sub
Application_OnEnd()
{
}
# end Application_OnEnd()
#==============================================================================
sub
Server_OnStart()
{
}
# end Server_OnStart()
#==============================================================================
sub
Server_OnEnd()
{
}
# end Server_OnEnd()
#==============================================================================
sub
Session_OnStart()
{
}
# end Session_OnStart()
#==============================================================================
sub
Session_OnEnd()
{
}
# end Session_OnEnd()
#==============================================================================
sub
Script_OnStart()
{
}
# end Script_OnStart()
#==============================================================================
sub
Script_OnEnd()
{
}
# end Script_OnEnd()
#==============================================================================
sub
Script_OnError($);
1;
# return true:
=pod
=head1 NAME
Apache2::ASP::GlobalASA - Base GlobalASA class
=head1 SYNOPSIS
( run in 1.205 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )