aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-06-10 16:34:21 -0700
committerfriendica <info@friendica.com>2014-06-10 16:34:21 -0700
commit059ccae278cdb2db43054ee51cfc94ac5cbfd6ad (patch)
tree81041ce571dd3d66ef3e9a2274333b1dc6dc89ed /include
parent970c82faa3e58264f60d0d9e7700ac92b1ea02ad (diff)
downloadvolse-hubzilla-059ccae278cdb2db43054ee51cfc94ac5cbfd6ad.tar.gz
volse-hubzilla-059ccae278cdb2db43054ee51cfc94ac5cbfd6ad.tar.bz2
volse-hubzilla-059ccae278cdb2db43054ee51cfc94ac5cbfd6ad.zip
remote install app (untested)
Diffstat (limited to 'include')
-rw-r--r--include/apps.php15
1 files changed, 14 insertions, 1 deletions
diff --git a/include/apps.php b/include/apps.php
index f7b09c7b6..40fa42576 100644
--- a/include/apps.php
+++ b/include/apps.php
@@ -201,16 +201,29 @@ function app_render($papp,$mode = 'view') {
}
}
+ $hosturl = '';
+
if(local_user()) {
$installed = app_installed(local_user(),$papp);
+ $hosturl = z_root() . '/';
+ }
+ elseif(remote_user()) {
+ $channel = get_app()->get_channel();
+ if($channel) {
+ $x = parse_url($channel['xchan_connurl']);
+ if($x) {
+ $hosturl = $x['scheme'] . '://' . $x['host'] . '/';
+ }
+ }
}
$install_action = (($installed) ? t('Update') : t('Install'));
return replace_macros(get_markup_template('app.tpl'),array(
'$app' => $papp,
+ '$hosturl' => $hosturl,
'$purchase' => (($papp['page'] && (! $installed)) ? t('Purchase') : ''),
- '$install' => ((local_user() && $mode == 'view') ? $install_action : ''),
+ '$install' => (((local_user() || $hosturl) && $mode == 'view') ? $install_action : ''),
'$edit' => ((local_user() && $installed && $mode == 'edit') ? t('Edit') : ''),
'$delete' => ((local_user() && $installed && $mode == 'edit') ? t('Delete') : '')
));