当前位置: 首页>>代码示例>>PHP>>正文


PHP Avatar::get方法代码示例

本文整理汇总了PHP中Avatar::get方法的典型用法代码示例。如果您正苦于以下问题:PHP Avatar::get方法的具体用法?PHP Avatar::get怎么用?PHP Avatar::get使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Avatar的用法示例。


在下文中一共展示了Avatar::get方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: html_start

 /**
  * Returns html string representing the beginning block of a timeline entry
  * @return string
  */
 public function html_start()
 {
     $t_avatar = Avatar::get($this->user_id, 32);
     if ($t_avatar === null) {
         return sprintf('<div class="entry"><div class="timestamp">%s</div>', $this->format_timestamp($this->timestamp));
     }
     return sprintf('<div class="entry"><div class="avatar"><a href="%s"><img class="avatar" src="%s" alt="%s" width="32" height="32" /></a></div><div class="timestamp">%s</div>', $t_avatar->link, $t_avatar->image, $t_avatar->text, $this->format_timestamp($this->timestamp));
 }
开发者ID:spring,项目名称:spring-website,代码行数:12,代码来源:TimelineEvent.class.php

示例2: print_avatar

/**
 * Print avatar image for the given user ID
 *
 * @param integer $p_user_id A user identifier.
 * @param integer $p_size    Image pixel size.
 * @return void
 */
function print_avatar($p_user_id, $p_size = 80)
{
    $t_avatar = Avatar::get($p_user_id, $p_size);
    if ($t_avatar === null) {
        return;
    }
    $t_image = htmlspecialchars($t_avatar->image);
    $t_link = htmlspecialchars($t_avatar->link);
    $t_text = htmlspecialchars($t_avatar->text);
    echo '<a rel="nofollow" href="' . $t_link . '">' . '<img class="avatar" src="' . $t_image . '" alt="' . $t_text . '" width="' . $p_size . '" height="' . $p_size . '" /></a>';
}
开发者ID:spring,项目名称:spring-website,代码行数:18,代码来源:print_api.php


注:本文中的Avatar::get方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。