aboutsummaryrefslogtreecommitdiffstats
path: root/mod/suggest.php
blob: b8ca423c5ae2a0a0a5acbad99351bfce946e6689 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php

require_once('include/socgraph.php');
require_once('include/contact_widgets.php');


function suggest_init(&$a) {
	if(! local_user())
		return;

	if(x($_GET,'ignore') && intval($_GET['ignore'])) {
		q("insert into gcign ( uid, gcid ) values ( %d, %d ) ",
			intval(local_user()),
			intval($_GET['ignore'])
		);
	}

}
		




function suggest_content(&$a) {

	$o = '';
	if(! local_user()) {
		notice( t('Permission denied.') . EOL);
		return;
	}

	$_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd;

	$a->page['aside'] .= follow_widget();
	$a->page['aside'] .= findpeople_widget();


	$o .= '<h2>' . t('Friend Suggestions') . '</h2>';


	$r = suggestion_query(local_user());

	if(! count($r)) {
		$o .= t('No suggestions available. If this is a new site, please try again in 24 hours.');
		return $o;
	}

	$tpl = get_markup_template('suggest_friends.tpl');

	foreach($r as $rr) {

		$connlnk = $a->get_baseurl() . '/follow/?url=' . (($rr['connect']) ? $rr['connect'] : $rr['url']);			

		$o .= replace_macros($tpl,array(
			'$url' => $rr['url'],
			'$name' => $rr['name'],
			'$photo' => $rr['photo'],
			'$ignlnk' => $a->get_baseurl() . '/suggest?ignore=' . $rr['id'],
			'$conntxt' => t('Connect'),
			'$connlnk' => $connlnk,
			'$ignore' => t('Ignore/Hide')
		));
	}

	$o .= cleardiv();
//	$o .= paginate($a);
	return $o;
}