diff --git a/mod/cb.php b/mod/cb.php deleted file mode 100644 index 030bea4d31..0000000000 --- a/mod/cb.php +++ /dev/null @@ -1,25 +0,0 @@ -user['allow_cid']; - $allow_gid = $a->user['allow_gid']; - $deny_cid = $a->user['deny_cid']; - $deny_gid = $a->user['deny_gid']; - } - - $poster = $a->contact; - - $uri = item_new_uri($a->get_hostname(),$uid); - - $action = sprintf( t('%1$s is currently %2$s'), '[url=' . $poster['url'] . ']' . $poster['name'] . '[/url]' , $verbs[$verb]); - - $arr = array(); - $arr['guid'] = get_guid(32); - $arr['uid'] = $uid; - $arr['uri'] = $uri; - $arr['parent-uri'] = (($parent_uri) ? $parent_uri : $uri); - $arr['type'] = 'activity'; - $arr['wall'] = 1; - $arr['contact-id'] = $poster['id']; - $arr['owner-name'] = $poster['name']; - $arr['owner-link'] = $poster['url']; - $arr['owner-avatar'] = $poster['thumb']; - $arr['author-name'] = $poster['name']; - $arr['author-link'] = $poster['url']; - $arr['author-avatar'] = $poster['thumb']; - $arr['title'] = ''; - $arr['allow_cid'] = $allow_cid; - $arr['allow_gid'] = $allow_gid; - $arr['deny_cid'] = $deny_cid; - $arr['deny_gid'] = $deny_gid; - $arr['last-child'] = 1; - $arr['visible'] = 1; - $arr['verb'] = $activity; - $arr['private'] = $private; - - $arr['origin'] = 1; - $arr['body'] = $action; - - $item_id = item_store($arr); - if($item_id) { - q("UPDATE `item` SET `plink` = '%s' WHERE `uid` = %d AND `id` = %d", - dbesc(System::baseUrl() . '/display/' . $poster['nickname'] . '/' . $item_id), - intval($uid), - intval($item_id) - ); - Worker::add(PRIORITY_HIGH, "Notifier", "tag", $item_id); - } - - - call_hooks('post_local_end', $arr); - - Worker::add(PRIORITY_HIGH, "Notifier", "like", $post_id); - - return; -} - - - -function mood_content(App $a) { - - if (! local_user()) { - notice( t('Permission denied.') . EOL); - return; - } - - $parent = ((x($_GET,'parent')) ? intval($_GET['parent']) : '0'); - - - - $verbs = get_mood_verbs(); - - $shortlist = array(); - foreach($verbs as $k => $v) - if($v !== 'NOTRANSLATION') - $shortlist[] = array($k,$v); - - - $tpl = get_markup_template('mood_content.tpl'); - - $o = replace_macros($tpl,array( - '$title' => t('Mood'), - '$desc' => t('Set your current mood and tell your friends'), - '$verbs' => $shortlist, - '$parent' => $parent, - '$submit' => t('Submit'), - )); - - return $o; - -} diff --git a/mod/navigation.php b/mod/navigation.php deleted file mode 100644 index d05131ebe4..0000000000 --- a/mod/navigation.php +++ /dev/null @@ -1,29 +0,0 @@ - System::baseUrl(), - '$sitelocation' => $nav_info['sitelocation'], - '$nav' => $nav_info['nav'], - '$banner' => $nav_info['banner'], - '$emptynotifications' => t('Nothing new here'), - '$userinfo' => $nav_info['userinfo'], - '$sel' => $a->nav_sel, - '$apps' => $a->apps, - '$clear_notifs' => t('Clear notifications') - )); - -} diff --git a/mod/qsearch.php b/mod/qsearch.php deleted file mode 100644 index 167ee41512..0000000000 --- a/mod/qsearch.php +++ /dev/null @@ -1,54 +0,0 @@ -