aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
Diffstat (limited to 'mod')
-rw-r--r--mod/apps.php20
1 files changed, 12 insertions, 8 deletions
diff --git a/mod/apps.php b/mod/apps.php
index 43540a3de..678af74e7 100644
--- a/mod/apps.php
+++ b/mod/apps.php
@@ -1,17 +1,21 @@
<?php
+require_once('include/apps.php');
+
function apps_content(&$a) {
- $apps = $a->get_apps();
- if(count($apps) == 0)
- notice( t('No installed applications.') . EOL);
+ $apps = get_system_apps();
+
+ $o .= print_r($apps,true);
+
+ return $o;
- $tpl = get_markup_template("apps.tpl");
- return replace_macros($tpl, array(
- '$title' => t('Applications'),
- '$apps' => $apps,
- ));
+// $tpl = get_markup_template("apps.tpl");
+// return replace_macros($tpl, array(
+// '$title' => t('Applications'),
+// '$apps' => $apps,
+// ));
}