streams/mod/suggest.php

71 lines
1.3 KiB
PHP
Raw Normal View History

2011-11-02 03:29:55 +00:00
<?php
require_once('include/socgraph.php');
2011-11-02 04:27:11 +00:00
require_once('include/contact_widgets.php');
2011-11-02 03:29:55 +00:00
2011-11-03 23:00:52 +00:00
function suggest_init(&$a) {
if(! local_user())
return;
if(x($_GET,'ignore')) {
q("insert into xign ( uid, xchan ) values ( %d, '%s' ) ",
2011-11-03 23:00:52 +00:00
intval(local_user()),
dbesc($_GET['ignore'])
2011-11-03 23:00:52 +00:00
);
}
}
2013-03-07 01:52:58 +00:00
function suggest_aside(&$a) {
2011-11-03 23:00:52 +00:00
2013-03-07 01:52:58 +00:00
$a->set_widget('follow', follow_widget());
$a->set_widget('findpeople', findpeople_widget());
}
2011-11-03 23:00:52 +00:00
2011-11-02 03:29:55 +00:00
function suggest_content(&$a) {
$o = '';
if(! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
$_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd;
$r = suggestion_query(local_user(),get_observer_hash());
2011-11-02 03:29:55 +00:00
if(! $r) {
2013-03-07 01:52:58 +00:00
info( t('No suggestions available. If this is a new site, please try again in 24 hours.'));
return;
2011-11-02 03:29:55 +00:00
}
2013-03-07 01:52:58 +00:00
$arr = array();
2011-11-02 03:29:55 +00:00
foreach($r as $rr) {
2011-12-18 09:08:32 +00:00
$connlnk = $a->get_baseurl() . '/follow/?url=' . $rr['xchan_addr'];
2011-12-18 09:08:32 +00:00
2013-03-07 01:52:58 +00:00
$arr[] = array(
'url' => chanlink_url($rr['xchan_url']),
'name' => $rr['xchan_name'],
'photo' => $rr['xchan_photo_m'],
'ignlnk' => $a->get_baseurl() . '/suggest?ignore=' . $rr['xchan_hash'],
'conntxt' => t('Connect'),
'connlnk' => $connlnk,
'ignore' => t('Ignore/Hide')
);
2011-11-02 03:29:55 +00:00
}
2013-03-07 01:52:58 +00:00
$o = replace_macros(get_markup_template('suggest_page.tpl'),array(
'$title' => t('Channel Suggestions'),
'$entries' => $arr
));
2011-11-02 03:29:55 +00:00
return $o;
2013-03-07 01:52:58 +00:00
2011-11-02 03:29:55 +00:00
}