apps: change page title to available/installed, display install action label in button and use different icons for installable and updateable apps

This commit is contained in:
Mario Vavti
2018-09-07 10:39:15 +02:00
parent d31251c54e
commit bb42ec2bfc
3 changed files with 5 additions and 4 deletions

View File

@@ -47,7 +47,7 @@ class Apps extends \Zotlabs\Web\Controller {
return replace_macros(get_markup_template('myapps.tpl'), array(
'$sitename' => get_config('system','sitename'),
'$cat' => $cat,
'$title' => t('Apps'),
'$title' => (($available) ? t('Available Apps') : t('Installed Apps')),
'$apps' => $apps,
'$authed' => ((local_channel()) ? true : false),
'$manage' => (($available) ? '' : t('Manage apps')),