]> git.mxchange.org Git - friendica.git/blob - mod/suggest.php
Merge remote branch 'friendica/master'
[friendica.git] / mod / suggest.php
1 <?php
2
3 require_once('include/socgraph.php');
4 require_once('include/contact_widgets.php');
5
6
7 function suggest_init(&$a) {
8         if(! local_user())
9                 return;
10
11         if(x($_GET,'ignore') && intval($_GET['ignore'])) {
12                 // Check if we should do HTML-based delete confirmation
13                 if($_REQUEST['confirm']) {
14                         // <form> can't take arguments in its "action" parameter
15                         // so add any arguments as hidden inputs
16                         $query = explode_querystring($a->query_string);
17                         $inputs = array();
18                         foreach($query['args'] as $arg) {
19                                 if(strpos($arg, 'confirm=') === false) {
20                                         $arg_parts = explode('=', $arg);
21                                         $inputs[] = array('name' => $arg_parts[0], 'value' => $arg_parts[1]);
22                                 }
23                         }
24
25                         $a->page['content'] = replace_macros(get_markup_template('confirm.tpl'), array(
26                                 '$method' => 'get',
27                                 '$message' => t('Do you really want to delete this suggestion?'),
28                                 '$extra_inputs' => $inputs,
29                                 '$confirm' => t('Yes'),
30                                 '$confirm_url' => $query['base'],
31                                 '$confirm_name' => 'confirmed',
32                                 '$cancel' => t('Cancel'),
33                         ));
34                         $a->error = 1; // Set $a->error so the other module functions don't execute
35                         return;
36                 }
37                 // Now check how the user responded to the confirmation query
38                 if(!$_REQUEST['canceled']) {
39                         q("insert into gcign ( uid, gcid ) values ( %d, %d ) ",
40                                 intval(local_user()),
41                                 intval($_GET['ignore'])
42                         );
43                 }
44         }
45
46 }
47                 
48
49
50
51
52 function suggest_content(&$a) {
53
54         $o = '';
55         if(! local_user()) {
56                 notice( t('Permission denied.') . EOL);
57                 return;
58         }
59
60         $_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd;
61
62         $a->page['aside'] .= follow_widget();
63         $a->page['aside'] .= findpeople_widget();
64
65
66         $o .= '<h2>' . t('Friend Suggestions') . '</h2>';
67
68
69         $r = suggestion_query(local_user());
70
71         if(! count($r)) {
72                 $o .= t('No suggestions available. If this is a new site, please try again in 24 hours.');
73                 return $o;
74         }
75
76         $tpl = get_markup_template('suggest_friends.tpl');
77
78         foreach($r as $rr) {
79
80                 $connlnk = $a->get_baseurl() . '/follow/?url=' . (($rr['connect']) ? $rr['connect'] : $rr['url']);                      
81
82                 $o .= replace_macros($tpl,array(
83                         '$url' => zrl($rr['url']),
84                         '$name' => $rr['name'],
85                         '$photo' => $rr['photo'],
86                         '$ignlnk' => $a->get_baseurl() . '/suggest?ignore=' . $rr['id'],
87                         '$ignid' => $rr['id'],
88                         '$conntxt' => t('Connect'),
89                         '$connlnk' => $connlnk,
90                         '$ignore' => t('Ignore/Hide')
91                 ));
92         }
93
94         $o .= cleardiv();
95 //      $o .= paginate($a);
96         return $o;
97 }