mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
18 lines
208 B
PHP
18 lines
208 B
PHP
<?php
|
|
|
|
/**
|
|
* * Name: Vcard
|
|
* * Description: Your default profile card
|
|
*/
|
|
|
|
namespace Zotlabs\Widget;
|
|
|
|
class Vcard {
|
|
|
|
function widget($arr) {
|
|
return vcard_from_xchan('', \App::get_observer());
|
|
}
|
|
|
|
}
|
|
|