friendica/mod/share.php

34 lines
983 B
PHP
Raw Normal View History

2011-03-17 03:36:59 +01:00
<?php
require_once('bbcode.php');
function share_init(&$a) {
$post_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
if((! $post_id) || (! local_user()))
killme();
2012-06-23 00:27:06 +02:00
$r = q("SELECT item.*, contact.network FROM `item` left join contact on `item`.`contact-id` = `contact`.`id` WHERE `item`.`id` = %d LIMIT 1",
2011-03-17 03:36:59 +01:00
intval($post_id)
);
2012-06-23 00:27:06 +02:00
if(! count($r) || ($r[0]['private'] && ($r[0]['network'] != NETWORK_FEED)))
2011-03-17 03:36:59 +01:00
killme();
$o = '';
// if(local_user() && intval(get_pconfig(local_user(),'system','plaintext'))) {
2012-03-15 11:47:02 +01:00
$o .= "\xE2\x99\xb2" . ' [url=' . $r[0]['author-link'] . ']' . $r[0]['author-name'] . '[/url]' . "\n";
if($r[0]['title'])
$o .= '[b]' . $r[0]['title'] . '[/b]' . "\n";
$o .= $r[0]['body'] . "\n";
// }
// else {
// $o .= '&#x2672; <a href="' . $r[0]['author-link'] . '">' . $r[0]['author-name'] . '</a><br />';
// if($r[0]['title'])
// $o .= '<strong>' . $r[0]['title'] . '</strong><br />';
// $o .= $r[0]['body'] . "\n";
// }
echo $o;
2011-03-17 03:36:59 +01:00
killme();
}