forked from GNUsocial/gnu-social
show RSVPs for an event
This commit is contained in:
@@ -321,6 +321,8 @@ class EventPlugin extends MicroappPlugin
|
||||
|
||||
$out->elementEnd('h3');
|
||||
|
||||
// FIXME: better dates
|
||||
|
||||
$out->elementStart('div', 'event-times');
|
||||
$out->element('abbr', array('class' => 'dtstart',
|
||||
'title' => common_date_iso8601($event->start_time)),
|
||||
@@ -339,6 +341,14 @@ class EventPlugin extends MicroappPlugin
|
||||
$out->element('div', 'location', $event->location);
|
||||
}
|
||||
|
||||
$rsvps = $event->getRSVPs();
|
||||
|
||||
$out->element('div', 'event-rsvps',
|
||||
sprintf(_('Yes: %d No: %d Maybe: %d'),
|
||||
count($rsvps[RSVP::POSITIVE]),
|
||||
count($rsvps[RSVP::NEGATIVE]),
|
||||
count($rsvps[RSVP::POSSIBLE])));
|
||||
|
||||
$out->elementStart('div', array('class' => 'event-info entry-content'));
|
||||
|
||||
$avatar = $profile->getAvatar(AVATAR_MINI_SIZE);
|
||||
|
Reference in New Issue
Block a user