Marcus Ramberg > Catalyst-Runtime-5.7001 > Catalyst::View

Download:
Catalyst-Runtime-5.7001.tar.gz

Dependencies

Annotate this POD

CPAN RT

New  5
Open  7
Stalled  4
View Bugs
Report a bug
Source   Latest Release: Catalyst-Runtime-5.80014_01

NAME ^

Catalyst::View - Catalyst View base class

SYNOPSIS ^

    package Catalyst::View::Homebrew;

    use base qw/Catalyst::View/;

    sub process {
    # template processing goes here.
    }

DESCRIPTION ^

This is the Catalyst View base class. It's meant to be used as a base class by Catalyst views.

As a convention, views are expected to read template names from $c->stash->{template}, and put the output into $c->res->body. Some views default to render a template named after the dispatched action's private name. (See Catalyst::Action.)

METHODS ^

Implements the same methods as other Catalyst components, see Catalyst::Component

process

gives an error message about direct use.

$c->merge_hash_config( $hashref, $hashref )

Merges two hashes together recursively, giving right-hand precedence.

AUTHOR ^

Sebastian Riedel, sri@oook.de Marcus Ramberg, mramberg@cpan.org

COPYRIGHT ^

This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.