streams/Zotlabs/Widget/Zcard.php

17 lines
277 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;
2022-01-25 01:26:12 +00:00
use Zotlabs\Lib\Channel;
2021-12-02 22:33:36 +00:00
2021-12-02 23:02:31 +00:00
class Zcard
{
public function widget($args)
{
2022-01-25 01:26:12 +00:00
$channel = Channel::from_id(App::$profile_uid);
return Channel::get_zcard($channel, get_observer_hash(), array('width' => 875));
2021-12-02 23:02:31 +00:00
}
2017-03-16 01:31:34 +00:00
}