diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-04-20 21:05:01 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-04-20 21:05:01 -0400 |
commit | b96eb1c8230ae2f5986d6f22934c606bbca9728e (patch) | |
tree | fecd2279927b61da28801094dc7d6b1cfa8d98fe /mod/common.php | |
parent | 7594796ee11c0b245d02d145868a13ac3d84ebfc (diff) | |
parent | 635580091a227529cb491e6441a5acbfff3177be (diff) | |
download | volse-hubzilla-b96eb1c8230ae2f5986d6f22934c606bbca9728e.tar.gz volse-hubzilla-b96eb1c8230ae2f5986d6f22934c606bbca9728e.tar.bz2 volse-hubzilla-b96eb1c8230ae2f5986d6f22934c606bbca9728e.zip |
Merge branch 'dev' into toggle-context-help
Diffstat (limited to 'mod/common.php')
-rw-r--r-- | mod/common.php | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/mod/common.php b/mod/common.php deleted file mode 100644 index 3390bd997..000000000 --- a/mod/common.php +++ /dev/null @@ -1,67 +0,0 @@ -<?php - -require_once('include/socgraph.php'); - -function common_init(&$a) { - - if(argc() > 1 && intval(argv(1))) - $channel_id = intval(argv(1)); - else { - notice( t('No channel.') . EOL ); - App::$error = 404; - return; - } - - $x = q("select channel_address from channel where channel_id = %d limit 1", - intval($channel_id) - ); - - if($x) - profile_load($a,$x[0]['channel_address'],0); - -} - -function common_content(&$a) { - - $o = ''; - - if(! App::$profile['profile_uid']) - return; - - $observer_hash = get_observer_hash(); - - - if(! perm_is_allowed(App::$profile['profile_uid'],$observer_hash,'view_contacts')) { - notice( t('Permission denied.') . EOL); - return; - } - - $o .= '<h2>' . t('Common connections') . '</h2>'; - - $t = count_common_friends(App::$profile['profile_uid'],$observer_hash); - - if(! $t) { - notice( t('No connections in common.') . EOL); - return $o; - } - - $r = common_friends(App::$profile['profile_uid'],$observer_hash); - - if($r) { - - $tpl = get_markup_template('common_friends.tpl'); - - foreach($r as $rr) { - $o .= replace_macros($tpl,array( - '$url' => $rr['xchan_url'], - '$name' => $rr['xchan_name'], - '$photo' => $rr['xchan_photo_m'], - '$tags' => '' - )); - } - - $o .= cleardiv(); - } - - return $o; -} |