streams/Zotlabs/Widget/Vcard.php

14 lines
163 B
PHP
Raw Normal View History

2017-03-16 04:26:28 +00:00
<?php
namespace Zotlabs\Widget;
use App;
2021-12-02 23:02:31 +00:00
class Vcard
{
public function widget($arr)
{
return vcard_from_xchan('', App::get_observer());
}
2017-03-16 04:26:28 +00:00
}