Files
core/Zotlabs/Widget/Zcard.php

17 lines
301 B
PHP

<?php
/**
* * Name: Zcard
* * Description: Your default profile card including your cover photo
*/
namespace Zotlabs\Widget;
class Zcard {
function widget($args) {
$channel = channelx_by_n(\App::$profile_uid);
return get_zcard($channel,get_observer_hash(),array('width' => 875));
}
}