用户头像 userAvatar
用法
继承自 头像 avatar
组件,新增语义明确的属性,用于支持禅道用户头像渲染。
使用用户数据
同时传入 avatar
和 realname
时,优先渲染 avatar
,即图片头像。
php
/* 用户头像数据 */
$user = new stdClass();
$user->avatar = 'http://lorempixel.com/100/100/people/1/';
$user->account = 'admin';
$user->realname = 'RealName';
userAvatar
(
set::user($user)
);
指定头像数据
php
userAvatar
(
set::avatar('http://lorempixel.com/100/100/people/1/'),
set::account('admin'),
set::realname('RealName')
);
属性
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
user | object | - | 用户数据。 |
account | string | - | 用户账号。 |
realname | string | - | 用户真实姓名。 |
avatar | string | - | 用户头像地址。 |
其它继承属性参考 头像 avatar
组件。
块
无
数据
无