diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-21 22:23:36 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-05-21 22:23:36 -0700 |
commit | e4448423fbcee4e685b410a62844a245601d2e0b (patch) | |
tree | bf39e91682e668386e1d3211431cd85875391639 /Zotlabs/Module/Apporder.php | |
parent | 21103f8bc4d4a54211ba4edaefc1bce694a8fa05 (diff) | |
download | volse-hubzilla-e4448423fbcee4e685b410a62844a245601d2e0b.tar.gz volse-hubzilla-e4448423fbcee4e685b410a62844a245601d2e0b.tar.bz2 volse-hubzilla-e4448423fbcee4e685b410a62844a245601d2e0b.zip |
apporder module and all the associated backend stuff to make it work; probably needs a bit of UI cleanup and a link to it from somewhere
Diffstat (limited to 'Zotlabs/Module/Apporder.php')
-rw-r--r-- | Zotlabs/Module/Apporder.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Zotlabs/Module/Apporder.php b/Zotlabs/Module/Apporder.php new file mode 100644 index 000000000..1097a01eb --- /dev/null +++ b/Zotlabs/Module/Apporder.php @@ -0,0 +1,40 @@ +<?php + +namespace Zotlabs\Module; + +use \Zotlabs\Lib as Zlib; + +class Apporder extends \Zotlabs\Web\Controller { + + function post() { + + } + + function get() { + $syslist = array(); + $list = Zlib\Apps::app_list(local_channel(), false, 'nav_featured_app'); + if($list) { + foreach($list as $li) { + $syslist[] = Zlib\Apps::app_encode($li); + } + } + Zlib\Apps::translate_system_apps($syslist); + + usort($syslist,'Zotlabs\\Lib\\Apps::app_name_compare'); + + $syslist = Zlib\Apps::app_order(local_channel(),$syslist); + + foreach($syslist as $app) { + $nav_apps[] = Zlib\Apps::app_render($app,'nav-order'); + + } + + return replace_macros(get_markup_template('apporder.tpl'), + [ + '$header' => t('Change Order of Navigation Apps'), + '$desc' => t('Use arrows to move the corresponding app up or down in the display list'), + '$nav_apps' => $nav_apps + ] + ); + } +} |