
Egg::View::Template::GlobalParam? - General parameter for template.

use base qw/ Egg::View /;
use Egg::View::Template::GlobalParam;
sub new {
my $view= shift->SUPER::new(@_);
$view->params({ Egg::View::Template::GlobalParam->set($view->e) });
}

For global parameter setting for template.
A global original parameter can be added from the controller etc. by setting %param.
use Egg::View::Template::GlobalParam;
%Egg::View::Template::GlobalParam::param= (
hoge => 'booo',
zuuu => sub { 'banban' },
);

The content of the set parameter is returned.

Egg::Release, Egg::View, Egg::View::Mason, Egg::View::HT,

Masatoshi Mizuno <lushe@cpan.org>

Copyright (C) 2008 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.