aboutsummaryrefslogtreecommitdiffstats
path: root/mod/apps.php
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2016-04-20 21:05:01 -0400
committerAndrew Manning <tamanning@zoho.com>2016-04-20 21:05:01 -0400
commitb96eb1c8230ae2f5986d6f22934c606bbca9728e (patch)
treefecd2279927b61da28801094dc7d6b1cfa8d98fe /mod/apps.php
parent7594796ee11c0b245d02d145868a13ac3d84ebfc (diff)
parent635580091a227529cb491e6441a5acbfff3177be (diff)
downloadvolse-hubzilla-b96eb1c8230ae2f5986d6f22934c606bbca9728e.tar.gz
volse-hubzilla-b96eb1c8230ae2f5986d6f22934c606bbca9728e.tar.bz2
volse-hubzilla-b96eb1c8230ae2f5986d6f22934c606bbca9728e.zip
Merge branch 'dev' into toggle-context-help
Diffstat (limited to 'mod/apps.php')
-rw-r--r--mod/apps.php40
1 files changed, 0 insertions, 40 deletions
diff --git a/mod/apps.php b/mod/apps.php
deleted file mode 100644
index 3539b2bc0..000000000
--- a/mod/apps.php
+++ /dev/null
@@ -1,40 +0,0 @@
-<?php
-
-require_once('include/apps.php');
-
-function apps_content(&$a) {
-
- if(argc() == 2 && argv(1) == 'edit')
- $mode = 'edit';
- else
- $mode = 'list';
-
- $_SESSION['return_url'] = App::$cmd;
-
- $apps = array();
-
- $syslist = get_system_apps();
-
- if(local_channel()) {
- $list = app_list(local_channel());
- if($list) {
- foreach($list as $x) {
- $syslist[] = app_encode($x);
- }
- }
- }
- usort($syslist,'app_name_compare');
-
-// logger('apps: ' . print_r($syslist,true));
-
- foreach($syslist as $app) {
- $apps[] = app_render($app,$mode);
- }
-
- return replace_macros(get_markup_template('myapps.tpl'), array(
- '$sitename' => get_config('system','sitename'),
- '$title' => t('Apps'),
- '$apps' => $apps,
- ));
-
-}