streams/Zotlabs/Widget/Zcard.php

16 lines
240 B
PHP
Raw Normal View History

2017-03-16 01:31:34 +00:00
<?php
namespace Zotlabs\Widget;
2021-12-02 22:33:36 +00:00
use App;
2021-12-02 23:02:31 +00:00
class Zcard
{
public function widget($args)
{
$channel = channelx_by_n(App::$profile_uid);
return get_zcard($channel, get_observer_hash(), array('width' => 875));
}
2017-03-16 01:31:34 +00:00
}