aboutsummaryrefslogtreecommitdiffstats
path: root/mod/apps.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/apps.php')
-rw-r--r--mod/apps.php26
1 files changed, 22 insertions, 4 deletions
diff --git a/mod/apps.php b/mod/apps.php
index 3d06abd49..aeedb5cda 100644
--- a/mod/apps.php
+++ b/mod/apps.php
@@ -5,15 +5,33 @@ 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,
));