Init UI for Repeated by
This commit is contained in:
parent
49ac5937c0
commit
7dc9f7ad06
|
@ -535,17 +535,19 @@ class NoticeListItem extends Widget
|
||||||
|
|
||||||
$repeater = Profile::staticGet('id', $this->repeat->profile_id);
|
$repeater = Profile::staticGet('id', $this->repeat->profile_id);
|
||||||
|
|
||||||
$attrs = array('href' => $repeater->profileurl,
|
$attrs = array('href' => $this->profile->profileurl,
|
||||||
'class' => 'url');
|
'class' => 'url');
|
||||||
|
|
||||||
if (!empty($repeater->fullname)) {
|
if (!empty($repeater->fullname)) {
|
||||||
$attrs['title'] = $repeater->fullname . ' (' . $repeater->nickname . ')';
|
$attrs['title'] = $repeater->fullname . ' (' . $repeater->nickname . ')';
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->out->elementStart('span', 'repeat');
|
$this->out->elementStart('span', 'repeat vcard');
|
||||||
|
|
||||||
$this->out->elementStart('a', $attrs);
|
$this->out->elementStart('a', $attrs);
|
||||||
|
|
||||||
|
$this->out->raw(_('Repeated by'));
|
||||||
|
|
||||||
$avatar = $repeater->getAvatar(AVATAR_MINI_SIZE);
|
$avatar = $repeater->getAvatar(AVATAR_MINI_SIZE);
|
||||||
|
|
||||||
$this->out->element('img', array('src' => ($avatar) ?
|
$this->out->element('img', array('src' => ($avatar) ?
|
||||||
|
@ -559,12 +561,9 @@ class NoticeListItem extends Widget
|
||||||
$repeater->fullname :
|
$repeater->fullname :
|
||||||
$repeater->nickname));
|
$repeater->nickname));
|
||||||
|
|
||||||
|
$this->out->element('span', 'nickname', $repeater->nickname);
|
||||||
$this->out->elementEnd('a');
|
$this->out->elementEnd('a');
|
||||||
|
|
||||||
$text_link = XMLStringer::estring('a', $attrs, $repeater->nickname);
|
|
||||||
|
|
||||||
$this->out->raw(sprintf(_('Repeated by %s'), $text_link));
|
|
||||||
|
|
||||||
$this->out->elementEnd('span');
|
$this->out->elementEnd('span');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -982,6 +982,17 @@ font-size:1.025em;
|
||||||
display:inline-block;
|
display:inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.entry-content .repeat {
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
.entry-content .repeat .photo {
|
||||||
|
float:none;
|
||||||
|
margin-right:1px;
|
||||||
|
position:relative;
|
||||||
|
top:4px;
|
||||||
|
left:0;
|
||||||
|
}
|
||||||
|
|
||||||
.notice-options {
|
.notice-options {
|
||||||
position:relative;
|
position:relative;
|
||||||
font-size:0.95em;
|
font-size:0.95em;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user