aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Vcard.php
blob: 25bb8592c8fb5ddd44addebfb81f3a28d2db14a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

/**
 *   * Name: Vcard
 *   * Description: Your default profile card
 */

namespace Zotlabs\Widget;

class Vcard {

	function widget($arr) {
		return vcard_from_xchan('', \App::get_observer());
	}

}