'$label' => t('Connect/Follow'),
'$hint' => t('Examples: Robert Morgenstein, Fishing'),
'$findthem' => t('Find'),
+ '$suggest' => t('Friend Suggestions'),
'$similar' => t('Similar Interests'),
'$inv' => $inv
));
}
+
function suggestion_query($uid, $start = 0, $limit = 40) {
+ if(! $uid)
+ return array();
+
$r = q("SELECT count(glink.gcid) as `total`, gcontact.* from gcontact
left join glink on glink.gcid = gcontact.id
where uid = %d and not gcontact.nurl in ( select nurl from contact where uid = %d)
<?php
require_once('include/socgraph.php');
+require_once('include/contact_widgets.php');
function suggest_content(&$a) {
return;
}
+ $a->page['aside'] .= follow_widget();
+ $a->page['aside'] .= findpeople_widget();
+
+
$o .= '<h2>' . t('Friend Suggestions') . '</h2>';
<input id="side-peoplefind-url" type="text" name="search" size="24" title="$hint" /><input id="side-peoplefind-submit" type="submit" name="submit" value="$findthem" />
</form>
<div class="side-link" id="side-match-link"><a href="match" >$similar</a></div>
+ <div class="side-link" id="side-suggest-link"><a href="suggest" >$suggest</a></div>
{{ if $inv }}
<div class="side-link" id="side-invite-link" ><a href="invite" >$inv</a></div>
{{ endif }}