nav_set_selected() for apps and apporder. restrict apporder to local_channel() and whitespace

This commit is contained in:
Mario Vavti 2017-10-11 11:58:09 +02:00
parent ba55400f14
commit 24d1d752fe
2 changed files with 26 additions and 19 deletions

View File

@ -11,6 +11,12 @@ class Apporder extends \Zotlabs\Web\Controller {
}
function get() {
if(! local_channel())
return;
nav_set_selected('Order Apps');
$syslist = array();
$list = Zlib\Apps::app_list(local_channel(), false, 'nav_featured_app');
if($list) {
@ -26,7 +32,6 @@ class Apporder extends \Zotlabs\Web\Controller {
foreach($syslist as $app) {
$nav_apps[] = Zlib\Apps::app_render($app,'nav-order');
}
return replace_macros(get_markup_template('apporder.tpl'),

View File

@ -8,6 +8,8 @@ class Apps extends \Zotlabs\Web\Controller {
function get() {
nav_set_selected('Apps');
if(argc() == 2 && argv(1) == 'edit')
$mode = 'edit';
else