Solstice::View::NoCookies - shown to the user when they have no cookies allowed.


Solstice documentation Contained in the Solstice distribution.

Index


Code Index:

NAME

Top

Solstice::View::NoCookies - shown to the user when they have no cookies allowed.

SYNOPSIS

Top

DESCRIPTION

Top

Superclass

Solstice::View.

Export

No symbols exported.

Methods

new ()

Constructor.

Private Methods

_getTemplateParams()

Modules Used

Solstice::View.

AUTHOR

Top

Catalyst Group, <catalyst@u.washington.edu>

VERSION

Top

$Revision: 3364 $

COPYRIGHT

Top


Solstice documentation Contained in the Solstice distribution.
package Solstice::View::NoCookies;

# $Id: DeniedBrowser.pm 3364 2006-05-05 07:18:21Z mcrawfor $

use 5.006_000;
use strict;
use warnings;
use Solstice::View;

our $template = 'no_cookies.html';

our @ISA = qw(Solstice::View);
our ($VERSION) = ('$Revision: 3364 $' =~ /^\$Revision:\s*([\d.]*)/);


sub new {
    my $obj = shift;
    my $self = $obj->SUPER::new(@_);
    
    $self->_setTemplate($template); 
    $self->_setTemplatePath('templates');

    return $self;
}

sub generateParams {
    my $self = shift;
}

1;

__END__