streams/Zotlabs/Widget/Zcard.php
2021-12-03 10:02:31 +11:00

15 lines
240 B
PHP

<?php
namespace Zotlabs\Widget;
use App;
class Zcard
{
public function widget($args)
{
$channel = channelx_by_n(App::$profile_uid);
return get_zcard($channel, get_observer_hash(), array('width' => 875));
}
}