diff options
author | zotlabs <mike@macgirvin.com> | 2017-03-15 21:26:28 -0700 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-03-29 11:57:00 +0200 |
commit | 0908da95298bdd7dd96dcb45ac490f8e7aa73a8e (patch) | |
tree | b38469f6a9b0fe3b59aba02a32eed813ba1df7b9 /Zotlabs/Widget/Vcard.php | |
parent | 6e101e458268c0f9b7bf461cea3c31c37b5e3791 (diff) | |
download | volse-hubzilla-0908da95298bdd7dd96dcb45ac490f8e7aa73a8e.tar.gz volse-hubzilla-0908da95298bdd7dd96dcb45ac490f8e7aa73a8e.tar.bz2 volse-hubzilla-0908da95298bdd7dd96dcb45ac490f8e7aa73a8e.zip |
widgets cont.
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()); + } + +} + |