Apache-JAF
view release on metacpan or search on metacpan
lib/Apache/JAF/Cookies.pm view on Meta::CPAN
package Apache::JAF::Cookies;
use Apache;
use Apache::Cookie ();
sub new {
my $class = shift;
return bless { r => Apache->request, cookies => Apache::Cookie->fetch() }, $class;
}
sub bake {
my $self = shift;
Apache::Cookie->new($self->{r}, @_)->bake();
}
1;
( run in 0.478 second using v1.01-cache-2.11-cpan-39bf76dae61 )