remove html from get_birthdays() and get_events()
This commit is contained in:
parent
fc61616c53
commit
62ad5043d6
56
boot.php
56
boot.php
|
@ -1174,11 +1174,7 @@ if(! function_exists('get_birthdays')) {
|
||||||
}
|
}
|
||||||
$classtoday = $istoday ? ' birthday-today ' : '';
|
$classtoday = $istoday ? ' birthday-today ' : '';
|
||||||
if($total) {
|
if($total) {
|
||||||
$o .= '<div id="birthday-notice" class="birthday-notice fakelink' . $classtoday . '" onclick=openClose(\'birthday-wrapper\'); >' . t('Birthday Reminders') . ' ' . '(' . $total . ')' . '</div>';
|
foreach($r as &$rr) {
|
||||||
$o .= '<div id="birthday-wrapper" style="display: none;" ><div id="birthday-title">' . t('Birthdays this week:') . '</div>';
|
|
||||||
$o .= '<div id="birthday-title-end"></div>';
|
|
||||||
|
|
||||||
foreach($r as $rr) {
|
|
||||||
if(! strlen($rr['name']))
|
if(! strlen($rr['name']))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
@ -1196,15 +1192,24 @@ if(! function_exists('get_birthdays')) {
|
||||||
$url = $a->get_baseurl() . '/redir/' . $rr['cid'];
|
$url = $a->get_baseurl() . '/redir/' . $rr['cid'];
|
||||||
}
|
}
|
||||||
|
|
||||||
$o .= '<div class="birthday-list" id="birthday-' . $rr['eid'] . '"><a class="birthday-link$sparkle" target="redir" href="'
|
$rr['link'] = $url;
|
||||||
. $url . '">' . $rr['name'] . '</a> '
|
$rr['title'] = $rr['name'];
|
||||||
. day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ? ' ' . t('[today]') : '')
|
$rr['date'] = day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ? ' ' . t('[today]') : '');
|
||||||
. '</div>' ;
|
$rr['startime'] = Null;
|
||||||
}
|
$rr['today'] = $today;
|
||||||
$o .= '</div></div>';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return $o;
|
}
|
||||||
|
$tpl = get_markup_template("birthdays_reminder.tpl");
|
||||||
|
return replace_macros($tpl, array(
|
||||||
|
'$baseurl' => $a->get_baseurl(),
|
||||||
|
'$classtoday' => $classtoday,
|
||||||
|
'$count' => $total,
|
||||||
|
'$event_reminders' => t('Birthday Reminders'),
|
||||||
|
'$event_title' => t('Birthdays this week:'),
|
||||||
|
'$events' => $r,
|
||||||
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1215,7 +1220,6 @@ if(! function_exists('get_events')) {
|
||||||
require_once('include/bbcode.php');
|
require_once('include/bbcode.php');
|
||||||
|
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
$o = '';
|
|
||||||
|
|
||||||
if(! local_user())
|
if(! local_user())
|
||||||
return $o;
|
return $o;
|
||||||
|
@ -1242,13 +1246,10 @@ if(! function_exists('get_events')) {
|
||||||
if($strt === datetime_convert('UTC',$a->timezone,'now','Y-m-d'))
|
if($strt === datetime_convert('UTC',$a->timezone,'now','Y-m-d'))
|
||||||
$istoday = true;
|
$istoday = true;
|
||||||
}
|
}
|
||||||
$classtoday = (($istoday) ? ' event-today ' : '');
|
$classtoday = (($istoday) ? 'event-today' : '');
|
||||||
|
|
||||||
$o .= '<div id="event-notice" class="birthday-notice fakelink' . $classtoday . '" onclick=openClose(\'event-wrapper\'); >' . t('Event Reminders') . ' ' . '(' . count($r) . ')' . '</div>';
|
|
||||||
$o .= '<div id="event-wrapper" style="display: none;" ><div id="event-title">' . t('Events this week:') . '</div>';
|
|
||||||
$o .= '<div id="event-title-end"></div>';
|
|
||||||
|
|
||||||
foreach($r as $rr) {
|
foreach($r as &$rr) {
|
||||||
if($rr['adjust'])
|
if($rr['adjust'])
|
||||||
$md = datetime_convert('UTC',$a->timezone,$rr['start'],'Y/m');
|
$md = datetime_convert('UTC',$a->timezone,$rr['start'],'Y/m');
|
||||||
else
|
else
|
||||||
|
@ -1262,14 +1263,23 @@ if(! function_exists('get_events')) {
|
||||||
$strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start']);
|
$strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start']);
|
||||||
$today = ((substr($strt,0,10) === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) ? true : false);
|
$today = ((substr($strt,0,10) === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) ? true : false);
|
||||||
|
|
||||||
$o .= '<div class="event-list" id="event-' . $rr['id'] . '"></a> <a href="events/' . $md . '">' . $title . '</a>'
|
$rr['link'] = $md;
|
||||||
. day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : '')
|
$rr['title'] = $title;
|
||||||
. '</div>' ;
|
$rr['date'] = day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : '');
|
||||||
|
$rr['startime'] = $strt;
|
||||||
|
$rr['today'] = $today;
|
||||||
}
|
}
|
||||||
$o .= '</div></div>';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $o;
|
$tpl = get_markup_template("events_reminder.tpl");
|
||||||
|
return replace_macros($tpl, array(
|
||||||
|
'$baseurl' => $a->get_baseurl(),
|
||||||
|
'$classtoday' => $classtoday,
|
||||||
|
'$count' => count($r),
|
||||||
|
'$event_reminders' => t('Event Reminders'),
|
||||||
|
'$event_title' => t('Events this week:'),
|
||||||
|
'$events' => $r,
|
||||||
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
10
view/birthdays_reminder.tpl
Normal file
10
view/birthdays_reminder.tpl
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{{ if $count }}
|
||||||
|
<div id="birthday-notice" class="birthday-notice fakelink' $classtoday" onclick="openClose('birthday-wrapper');">$event_reminders ($count)</div>
|
||||||
|
<div id="birthday-wrapper" style="display: none;" ><div id="birthday-title">$event_title</div>
|
||||||
|
<div id="birthday-title-end"></div>
|
||||||
|
{{ for $events as $event }}
|
||||||
|
<div class="birthday-list" id="birthday-$event.id"></a> <a href="events/$event.link">$event.title</a> $event.date </div>
|
||||||
|
{{ endfor }}
|
||||||
|
</div></div>
|
||||||
|
{{ endif }}
|
||||||
|
|
10
view/events_reminder.tpl
Normal file
10
view/events_reminder.tpl
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{{ if $count }}
|
||||||
|
<div id="event-notice" class="birthday-notice fakelink $classtoday" onclick="openClose('event-wrapper');">$event_reminders ($count)</div>
|
||||||
|
<div id="event-wrapper" style="display: none;" ><div id="event-title">$event_title</div>
|
||||||
|
<div id="event-title-end"></div>
|
||||||
|
{{ for $events as $event }}
|
||||||
|
<div class="event-list" id="event-$event.id"></a> <a href="events/$event.link">$event.title</a> $event.date </div>
|
||||||
|
{{ endfor }}
|
||||||
|
</div></div>
|
||||||
|
{{ endif }}
|
||||||
|
|
Loading…
Reference in a new issue