nav_set_selected() for apps and apporder. restrict apporder to local_channel() and whitespace
This commit is contained in:
parent
ba55400f14
commit
24d1d752fe
@ -11,6 +11,12 @@ class Apporder extends \Zotlabs\Web\Controller {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function get() {
|
function get() {
|
||||||
|
|
||||||
|
if(! local_channel())
|
||||||
|
return;
|
||||||
|
|
||||||
|
nav_set_selected('Order Apps');
|
||||||
|
|
||||||
$syslist = array();
|
$syslist = array();
|
||||||
$list = Zlib\Apps::app_list(local_channel(), false, 'nav_featured_app');
|
$list = Zlib\Apps::app_list(local_channel(), false, 'nav_featured_app');
|
||||||
if($list) {
|
if($list) {
|
||||||
@ -26,7 +32,6 @@ class Apporder extends \Zotlabs\Web\Controller {
|
|||||||
|
|
||||||
foreach($syslist as $app) {
|
foreach($syslist as $app) {
|
||||||
$nav_apps[] = Zlib\Apps::app_render($app,'nav-order');
|
$nav_apps[] = Zlib\Apps::app_render($app,'nav-order');
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return replace_macros(get_markup_template('apporder.tpl'),
|
return replace_macros(get_markup_template('apporder.tpl'),
|
||||||
|
@ -8,6 +8,8 @@ class Apps extends \Zotlabs\Web\Controller {
|
|||||||
|
|
||||||
function get() {
|
function get() {
|
||||||
|
|
||||||
|
nav_set_selected('Apps');
|
||||||
|
|
||||||
if(argc() == 2 && argv(1) == 'edit')
|
if(argc() == 2 && argv(1) == 'edit')
|
||||||
$mode = 'edit';
|
$mode = 'edit';
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user