aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Zcard.php
blob: 35362c50eef8a8585de329ef13c6247dd850d967 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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));
	}
}