mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
17 lines
301 B
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));
|
|
}
|
|
}
|