streams/Zotlabs/Widget/Vcard.php

17 lines
166 B
PHP
Raw Normal View History

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