Solstice::View::DeniedUser - View shown to users whose browser is in the blacklist.


Solstice documentation Contained in the Solstice distribution.

Index


Code Index:

NAME

Top

Solstice::View::DeniedUser - View shown to users whose browser is in the blacklist.

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::DeniedUser;

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

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

use constant TEMPLATE => 'denied_user.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 _getTemplateParams {
    my $self = shift;
    return {};
}

1;

__END__