streams/Code/Widget/Vcard.php
2022-10-23 20:39:49 -07:00

13 lines
213 B
PHP

<?php
namespace Code\Widget;
use App;
class Vcard implements WidgetInterface
{
public function widget(array $arguments): string
{
return vcard_from_xchan('', App::get_observer()) ?: '';
}
}