NAME

Scaffold::Stash::Cookies - A stash of cookies

DESCRIPTION

This module handles a stash of CGI::Simple::Cookie objects.

METHODS

delete

Marks the cookie for deletion. Returns TRUE on success.

my $stat = $self->stash->cookies->delete('name');
get

Returns the named cookie or an array of cookie names.

my $cookie = $self->stash->cookies->get('name');

my @names = $self->stash->cookies->get;

foreach my $key (@names) {

    my $cookie = $self->stash->cookied->get($key);

}
set

Creates a new cookie and places it in the stash. Uses CGI::Simple::Cookie symantics when creating the cookie.

$self->stash->cookies->set(
   name  => 'cookie',
   value => 'this is really cool'
);

SEE ALSO

Scaffold
Scaffold::Base
Scaffold::Cache
Scaffold::Cache::FastMmap
Scaffold::Cache::Manager
Scaffold::Cache::Memcached
Scaffold::Class
Scaffold::Constants
Scaffold::Engine
Scaffold::Handler
Scaffold::Handler::Default
Scaffold::Handler::Favicon
Scaffold::Handler::Robots
Scaffold::Handler::Static
Scaffold::Lockmgr
Scaffold::Lockmgr::KeyedMutex
Scaffold::Lockmgr::UnixMutex
Scaffold::Plugins
Scaffold::Render
Scaffold::Render::Default
Scaffold::Render::TT
Scaffold::Routes
Scaffold::Server
Scaffold::Session::Manager
Scaffold::Stash
Scaffold::Stash::Controller
Scaffold::Stash::Cookie
Scaffold::Stash::Manager
Scaffold::Stash::View
Scaffold::Uaf::Authenticate
Scaffold::Uaf::AuthorizeFactory
Scaffold::Uaf::Authorize
Scaffold::Uaf::GrantAllRule
Scaffold::Uaf::Login
Scaffold::Uaf::Logout
Scaffold::Uaf::Manager
Scaffold::Uaf::Rule
Scaffold::Uaf::User
Scaffold::Utils

AUTHOR

Kevin L. Esteb, <kevin@kesteb.us>

COPYRIGHT AND LICENSE

Copyright (C) 2009 by Kevin L. Esteb

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.5 or, at your option, any later version of Perl 5 you may have available.