Jifty::Plugin::Userpic::View - View for the Userpic plugin


Jifty-Plugin-Userpic documentation Contained in the Jifty-Plugin-Userpic distribution.

Index


Code Index:

NAME

Top

Jifty::Plugin::Userpic::View - View for the Userpic plugin

DESCRIPTION

Top

A view package for the Userpic plugin.

TEMPLATES

Top

userpic/image

Outputs the image stored in 'field' of 'item'. (Both of those are set by the dispatcher)


Jifty-Plugin-Userpic documentation Contained in the Jifty-Plugin-Userpic distribution.

package Jifty::Plugin::Userpic::View;

use Jifty::View::Declare -base;


template 'userpic/image' => sub {
    my ($item,$field) = get(qw(item field));
    Jifty->handler->apache->content_type("image/jpeg");
    outs_raw($item->$field());

};

1;