aboutsummaryrefslogtreecommitdiffstats
path: root/mod/apps.php
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2014-05-22 19:39:28 +0100
committerThomas Willingham <founder@kakste.com>2014-05-22 19:39:28 +0100
commit292601728430469f21b81d7055cd485a0efb491c (patch)
tree4d35371f101a26b69eb8dc6dc15c3be4a884258e /mod/apps.php
parentb06fd69da84626c1e8c1d8b5dbda6f181027a782 (diff)
parent8e2771cbd409d56917e7d249d80a2c422609f540 (diff)
downloadvolse-hubzilla-292601728430469f21b81d7055cd485a0efb491c.tar.gz
volse-hubzilla-292601728430469f21b81d7055cd485a0efb491c.tar.bz2
volse-hubzilla-292601728430469f21b81d7055cd485a0efb491c.zip
Merge branch 'master' of https://github.com/friendica/red
Diffstat (limited to 'mod/apps.php')
-rw-r--r--mod/apps.php27
1 files changed, 23 insertions, 4 deletions
diff --git a/mod/apps.php b/mod/apps.php
index 3d06abd49..e88c54c66 100644
--- a/mod/apps.php
+++ b/mod/apps.php
@@ -5,15 +5,34 @@ require_once('include/apps.php');
function apps_content(&$a) {
+ if(argc() == 1 || (! local_user())) {
- $apps = get_system_apps();
+ $apps = get_system_apps();
-// $o .= print_r($apps,true);
+ // $o .= print_r($apps,true);
-// return $o;
+ // return $o;
+ return replace_macros(get_markup_template('apps.tpl'), array(
+ '$title' => t('Apps'),
+ '$apps' => $apps,
+ ));
+ }
- return replace_macros(get_markup_template('apps.tpl'), array(
+ if(argc() == 3 && argv(2) == 'edit')
+ $mode = 'edit';
+ else
+ $mode = 'list';
+
+ $apps = array();
+ $list = app_list(local_user());
+ if($list) {
+ foreach($list as $app) {
+ $apps[] = app_render(app_encode($app),$mode);
+ }
+ }
+
+ return replace_macros(get_markup_template('myapps.tpl'), array(
'$title' => t('Apps'),
'$apps' => $apps,
));