diff options
author | zotlabs <mike@macgirvin.com> | 2018-07-04 23:20:35 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-07-04 23:20:35 -0700 |
commit | f6e8ce5516eeaf2e0525f69099d68a55df9501e3 (patch) | |
tree | 95567186aa874db9fbb809f10c6d9b5dedd41b34 /Zotlabs/Widget/Appstore.php | |
parent | 51a2e64a897e5afdb3e607915534a1562a215563 (diff) | |
download | volse-hubzilla-f6e8ce5516eeaf2e0525f69099d68a55df9501e3.tar.gz volse-hubzilla-f6e8ce5516eeaf2e0525f69099d68a55df9501e3.tar.bz2 volse-hubzilla-f6e8ce5516eeaf2e0525f69099d68a55df9501e3.zip |
appstore changes
Diffstat (limited to 'Zotlabs/Widget/Appstore.php')
-rw-r--r-- | Zotlabs/Widget/Appstore.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Zotlabs/Widget/Appstore.php b/Zotlabs/Widget/Appstore.php new file mode 100644 index 000000000..237707733 --- /dev/null +++ b/Zotlabs/Widget/Appstore.php @@ -0,0 +1,18 @@ +<?php + +namespace Zotlabs\Widget; + + +class Appstore { + + function widget($arr) { + $store = ((argc() > 1 && argv(1) === 'available') ? 1 : 0); + return replace_macros(get_markup_template('appstore.tpl'), [ + '$title' => t('App Collections'), + '$options' => [ + [ z_root() . '/apps/available', t('Available Apps'), $store ], + [ z_root() . '/apps', t('Installed apps'), 1 - $store ] + ] + ]); + } +}
\ No newline at end of file |