streams/Code/Module/Embed.php
2022-02-15 20:08:28 -08:00

24 lines
397 B
PHP

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