aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-10-24 22:07:42 -0700
committerFriendika <info@friendika.com>2011-10-24 22:07:42 -0700
commit4ea6f86b2089e0468139890a42cb5157f804c26e (patch)
tree48cf8ac7b03188cff73fff6e4447db75dba73873
parent318f17940873bb6857dcaaca362194676c1f5dc7 (diff)
downloadvolse-hubzilla-4ea6f86b2089e0468139890a42cb5157f804c26e.tar.gz
volse-hubzilla-4ea6f86b2089e0468139890a42cb5157f804c26e.tar.bz2
volse-hubzilla-4ea6f86b2089e0468139890a42cb5157f804c26e.zip
bug #166
-rw-r--r--boot.php51
-rw-r--r--mod/network.php4
-rw-r--r--mod/profile.php4
3 files changed, 57 insertions, 2 deletions
diff --git a/boot.php b/boot.php
index 86a37ce90..636062136 100644
--- a/boot.php
+++ b/boot.php
@@ -1031,6 +1031,57 @@ function get_birthdays() {
}}
+if(! function_exists('get_events')) {
+function get_events() {
+
+ require_once('include/bbcode.php');
+
+ $a = get_app();
+ $o = '';
+
+ if(! local_user())
+ return $o;
+
+ $bd_format = t('g A l F d') ; // 8 AM Friday January 18
+ $bd_short = t('F d');
+
+ $r = q("SELECT `event`.* FROM `event`
+ WHERE `event`.`uid` = %d AND `type` != 'birthday' AND `start` < '%s' AND `finish` > '%s'
+ ORDER BY `start` DESC ",
+ intval(local_user()),
+ dbesc(datetime_convert('UTC','UTC','now + 6 days')),
+ dbesc(datetime_convert('UTC','UTC','now'))
+ );
+
+ if($r && count($r)) {
+ $o .= '<div id="event-notice" class="birthday-notice fakelink" 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) {
+
+ if($rr['adjust'])
+ $md = datetime_convert('UTC',$a->timezone,$rr['start'],'Y/m\#\l\i\n\k\-j');
+ else
+ $md = datetime_convert('UTC','UTC',$rr['start'],'Y/m\#\l\i\n\k\-j');
+
+ $title = substr(strip_tags(bbcode($rr['desc'])),0,32) . '... ';
+ if(! $title)
+ $title = t('[No description]');
+ $now = strtotime('now');
+ $today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
+
+ $o .= '<div class="event-list" id="event-' . $rr['eid'] . '"></a> <a href="events/' . $md . '">' . $title . '</a>'
+ . day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : '')
+ . '</div>' ;
+ }
+ $o .= '</div></div>';
+ }
+
+ return $o;
+}}
+
+
/**
*
* Wrap calls to proc_close(proc_open()) and call hook
diff --git a/mod/network.php b/mod/network.php
index 491603f35..9fed8592e 100644
--- a/mod/network.php
+++ b/mod/network.php
@@ -328,8 +328,10 @@ function network_content(&$a, $update = 0) {
}
}
- if((! $group) && (! $cid) && (! $update))
+ if((! $group) && (! $cid) && (! $update)) {
$o .= get_birthdays();
+ $o .= get_events();
+ }
$sql_extra2 = (($nouveau) ? '' : " AND `item`.`parent` = `item`.`id` ");
diff --git a/mod/profile.php b/mod/profile.php
index a453f72f1..6d67ab74b 100644
--- a/mod/profile.php
+++ b/mod/profile.php
@@ -223,8 +223,10 @@ function profile_content(&$a, $update = 0) {
);
}
- if($is_owner && ! $update)
+ if($is_owner && ! $update) {
$o .= get_birthdays();
+ $o .= get_events();
+ }
$o .= conversation($a,$r,'profile',$update);