NAME

Egg::View - Common package for VIEW module.

SYNOPSIS

package Egg::View::[FOO_TEMPLATE];
use strict;
use base qw/Egg::View/;
use [FOO_TEMPLATE_MODULE];

sub new {
  my $view= shift->SUPER::new(@_);
  ...
  ... ban, ban.
}
sub output {
  my($view, $e)= @_;
  my $config  = $e->flag('VIEW_CONFIG_[FOO_TEMPLATE]') || {};
  my $template= $view->template_file($e) || return;

  my $body= [FOO_TEMPLATE_MODULE]->output(
    template=> $template,
    option  => $config,
    );

  $e->response->body( \$body );

  return 1;
}

DESCRIPTION

When the View module uses this, happiness can be tasted only just a little.

METHODS

$view->name;

Class name when calling it is returned.

$view->params;

The HASH reference of the parameter is returned.

$view->param([KEY NAME], [VALUE]);

This does operation similar to the param method of the appearance often.

$view->template_file([Egg Object]);

The set template is received. If Egg is debug mode, the report is sent to STDERR. When the template is not set, $e->finished(404) is returned.

SEE ALSO

Egg::Release, Egg::Config

AUTHOR

Masatoshi Mizuno, <mizuno@bomcity.com>

COPYRIGHT AND LICENSE

Copyright (C) 2006 Bee Flag, Corp. <http://egg.bomcity.com/>, All Rights Reserved.

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.6 or, at your option, any later version of Perl 5 you may have available.