streams/mod/suggest.php

66 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');
require_once('include/widgets.php');
2011-11-02 03:29:55 +00:00
2011-11-03 23:00:52 +00:00
function suggest_init(&$a) {
2015-01-29 04:56:04 +00:00
if(! local_channel())
2011-11-03 23:00:52 +00:00
return;
if(x($_GET,'ignore')) {
q("insert into xign ( uid, xchan ) values ( %d, '%s' ) ",
2015-01-29 04:56:04 +00:00
intval(local_channel()),
dbesc($_GET['ignore'])
2011-11-03 23:00:52 +00:00
);
}
}
2011-11-02 03:29:55 +00:00
function suggest_content(&$a) {
$o = '';
2015-01-29 04:56:04 +00:00
if(! local_channel()) {
2011-11-02 03:29:55 +00:00
notice( t('Permission denied.') . EOL);
return;
}
$_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd;
2015-01-29 04:56:04 +00:00
$r = suggestion_query(local_channel(),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']),
'profile' => $rr['xchan_url'],
2013-03-07 01:52:58 +00:00
'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
}