diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-04-20 21:05:01 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-04-20 21:05:01 -0400 |
commit | b96eb1c8230ae2f5986d6f22934c606bbca9728e (patch) | |
tree | fecd2279927b61da28801094dc7d6b1cfa8d98fe /mod/apps.php | |
parent | 7594796ee11c0b245d02d145868a13ac3d84ebfc (diff) | |
parent | 635580091a227529cb491e6441a5acbfff3177be (diff) | |
download | volse-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.php | 40 |
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, - )); - -} |