ability to pin apps to the navbar when using named navbars

This commit is contained in:
zotlabs
2017-10-08 19:43:03 -07:00
parent c37908f344
commit 23812e5b48
4 changed files with 26 additions and 2 deletions

View File

@@ -383,6 +383,13 @@ class Apps {
$install_action = (($installed) ? t('Update') : t('Install'));
$icon = ((strpos($papp['photo'],'icon:') === 0) ? substr($papp['photo'],5) : '');
if($mode === 'navbar') {
return replace_macros(get_markup_template('app_nav.tpl'),array(
'$app' => $papp,
'$icon' => $icon,
));
}
return replace_macros(get_markup_template('app.tpl'),array(
'$app' => $papp,
'$icon' => $icon,