diff options
Diffstat (limited to 'Zotlabs/Widget/Vcard.php')
-rw-r--r-- | Zotlabs/Widget/Vcard.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Zotlabs/Widget/Vcard.php b/Zotlabs/Widget/Vcard.php new file mode 100644 index 000000000..cab05dfdd --- /dev/null +++ b/Zotlabs/Widget/Vcard.php @@ -0,0 +1,12 @@ +<?php + +namespace Zotlabs\Widget; + +class Vcard { + + function widget($arr) { + return vcard_from_xchan('', \App::get_observer()); + } + +} + |