-
-
18 Apr 2008 10:27:38 UTC
- Distribution: Maypole
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (13)
- Testers (225 / 231 / 1)
- Kwalitee
Bus factor: 0- 65.31% Coverage
- License: unknown
- Activity
24 month- Tools
- Download (149.99KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- CGI::Simple
- CGI::Untaint
- CGI::Untaint::date
- CGI::Untaint::email
- Class::DBI
- Class::DBI::AbstractSearch
- Class::DBI::Loader
- Class::DBI::Loader::Relationship
- Class::DBI::Pager
- Class::DBI::Plugin::RetrieveAll
- Class::DBI::Plugin::Type
- Digest::MD5
- File::MMagic::XS
- HTML::Tree
- HTTP::Body
- Template
- Template::Plugin::Class
- Test::MockModule
- UNIVERSAL::moniker
- UNIVERSAL::require
- URI
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Maypole::View::Base - Base class for view classes
DESCRIPTION
This is the base class for Maypole view classes. This is an abstract class that defines the interface, and can't be used directly.
process
This is the entry point for the view. It templates the request and returns a
Maypole::Constant
indicate success or failure for the view phase.Anyone subclassing this for a different rendering mechanism needs to provide the following methods:
template
In this method you do the actual processing of your template. it should use paths to search for components, and provide the templates with easy access to the contents of vars. It should put the result in
$r->output
and returnOK
if processing was sucessfull, or populate$r->error
and returnERROR
if it fails.Other overrides
Additionally, individual derived model classes may want to override the
new
The default constructor does nothing. You can override this to perform actions during view initialization.
paths
Returns search paths for templates. the default method returns folders for the model class's
moniker
, factory, custom under the configured template root.vars
returns a hash of data the template should have access to. The default one populates classmetadata if there is a table class, as well as setting the data objects by name if there is one or more objects available.
error
Module Install Instructions
To install Maypole, copy and paste the appropriate command in to your terminal.
cpanm Maypole
perl -MCPAN -e shell install Maypole
For more information on module installation, please visit the detailed CPAN module installation guide.