aboutsummaryrefslogtreecommitdiffstats
path: root/mod/share.php
blob: f6c025e3cef29ea774c58bae14d341c94a18ec78 (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
<?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();

	$r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
		intval($post_id)
	);
	if(! count($r) || $r[0]['private'])
		killme();

	$o = '';

	if(local_user() && intval(get_pconfig(local_user(),'system','plaintext'))) {
		$o .= '&#x2672; [url=' . $r[0]['author-link'] . ']' . $r[0]['author-name'] . '[/url]';
		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 .= bbcode($r[0]['body'], true) . '<br />';
	}
	echo $o;
	killme();  
}