streams/Zotlabs/Module/Embed.php

23 lines
354 B
PHP
Raw Normal View History

2019-01-30 05:26:52 +00:00
<?php
namespace Zotlabs\Module;
2019-04-15 05:31:07 +00:00
/*
* Embed
* Given a post_id returns a share tag for inclusion in a post
*
*/
2019-01-30 05:26:52 +00:00
use Zotlabs\Web\Controller;
class Embed extends Controller {
function init() {
$post_id = ((argc() > 1) ? intval(argv(1)) : 0);
2019-04-15 05:31:07 +00:00
if ($post_id && local_channel()) {
echo '[share=' . $post_id . '][/share]';
2019-01-30 05:26:52 +00:00
}
killme();
}
}