diff options
Diffstat (limited to 'Zotlabs/Widget/Appcloud.php')
-rw-r--r-- | Zotlabs/Widget/Appcloud.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Zotlabs/Widget/Appcloud.php b/Zotlabs/Widget/Appcloud.php new file mode 100644 index 000000000..2a4671eee --- /dev/null +++ b/Zotlabs/Widget/Appcloud.php @@ -0,0 +1,13 @@ +<?php + +namespace Zotlabs\Widget; + +class Appcloud { + + function widget($arr) { + if(! local_channel()) + return ''; + return app_tagblock(z_root() . '/apps'); + } +} + |