diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-16 22:57:34 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-05-16 23:00:28 -0700 |
commit | 21103f8bc4d4a54211ba4edaefc1bce694a8fa05 (patch) | |
tree | d3bc2fe01fffa4c17941a92c1f4b10a41daba2d1 /include | |
parent | 3c22a7b4823d9b47e91d39f2984cb54d6fe0d80f (diff) | |
download | volse-hubzilla-21103f8bc4d4a54211ba4edaefc1bce694a8fa05.tar.gz volse-hubzilla-21103f8bc4d4a54211ba4edaefc1bce694a8fa05.tar.bz2 volse-hubzilla-21103f8bc4d4a54211ba4edaefc1bce694a8fa05.zip |
provide mechanism to arbitrarily sort the nav tray apps, currently the preferred order list needs to be manually created
Diffstat (limited to 'include')
-rw-r--r-- | include/nav.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/nav.php b/include/nav.php index 849e19d9a..0fd555abf 100644 --- a/include/nav.php +++ b/include/nav.php @@ -257,6 +257,8 @@ EOT; 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'); } |