root/branches/release-26/php/lib/function.mtauthoruserpic.php @ 1174

Revision 1174, 1.0 kB (checked in by bchoate, 23 months ago)

Updated copyright year for source.

Line 
1<?php
2# Movable Type (r) Open Source (C) 2001-2008 Six Apart, Ltd.
3# This program is distributed under the terms of the
4# GNU General Public License, version 2.
5#
6# $Id$
7
8function smarty_function_mtauthoruserpic($args, &$ctx) {
9    $author = $ctx->stash('author');
10    if (!$author) return '';
11
12    $asset_id = isset($author['author_userpic_asset_id']) ? $author['author_userpic_asset_id'] : 0;
13    $asset = $ctx->mt->db->fetch_assets(array('id' => $asset_id));
14    if (!$asset) return '';
15
16    $blog =& $ctx->stash('blog');
17
18    require_once("MTUtil.php");
19    $userpic_url = userpic_url($asset[0], $blog, $author);
20    $asset_path = asset_path($asset[0]['asset_file_path'], $blog);
21    list($src_w, $src_h, $src_type, $src_attr) = getimagesize($asset_path);
22    $dimensions = sprintf('width="%s" height="%s"', $src_w, $src_h);
23
24    $link =sprintf('<img src="%s" %s alt="%s" />',
25                   encode_html($userpic_url), $dimensions, encode_html($asset['label']));
26
27    return $link;
28}
29?>
Note: See TracBrowser for help on using the browser.