streams/Zotlabs/Widget/Zcard.php
2021-12-03 09:33:36 +11:00

13 lines
209 B
PHP

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