streams/Zotlabs/Module/Embed.php
2019-04-14 22:31:07 -07:00

22 lines
354 B
PHP

<?php
namespace Zotlabs\Module;
/*
* Embed
* Given a post_id returns a share tag for inclusion in a post
*
*/
use Zotlabs\Web\Controller;
class Embed extends Controller {
function init() {
$post_id = ((argc() > 1) ? intval(argv(1)) : 0);
if ($post_id && local_channel()) {
echo '[share=' . $post_id . '][/share]';
}
killme();
}
}