diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-09-07 10:39:15 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-09-07 10:39:15 +0200 |
commit | bb42ec2bfc0826dde3e3915566c4689762b128d7 (patch) | |
tree | d727afdca35202aa296f3ca219f1f05fe302ef9e /Zotlabs/Lib/Apps.php | |
parent | d31251c54e0be4400465c18cc12a5f51a7b896c6 (diff) | |
download | volse-hubzilla-bb42ec2bfc0826dde3e3915566c4689762b128d7.tar.gz volse-hubzilla-bb42ec2bfc0826dde3e3915566c4689762b128d7.tar.bz2 volse-hubzilla-bb42ec2bfc0826dde3e3915566c4689762b128d7.zip |
apps: change page title to available/installed, display install action label in button and use different icons for installable and updateable apps
Diffstat (limited to 'Zotlabs/Lib/Apps.php')
-rw-r--r-- | Zotlabs/Lib/Apps.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php index 1d9fe48e6..860a799ef 100644 --- a/Zotlabs/Lib/Apps.php +++ b/Zotlabs/Lib/Apps.php @@ -500,7 +500,8 @@ class Apps { '$icon' => $icon, '$hosturl' => $hosturl, '$purchase' => (($papp['page'] && (! $installed)) ? t('Purchase') : ''), - '$install' => (($hosturl && in_array($mode, ['view','install'])) ? $install_action : ''), + '$installed' => $installed, + '$action_label' => (($hosturl && in_array($mode, ['view','install'])) ? $install_action : ''), '$edit' => ((local_channel() && $installed && $mode == 'edit') ? t('Edit') : ''), '$delete' => ((local_channel() && $installed && $mode == 'edit') ? t('Delete') : ''), '$undelete' => ((local_channel() && $installed && $mode == 'edit') ? t('Undelete') : ''), |