aboutsummaryrefslogtreecommitdiffstats
path: root/mod/apps.php
blob: be9b54307fa75a3da51c47019d56a9e48418b801 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php

require_once('include/apps.php');

function apps_content(&$a) {

	if(argc() == 2 && argv(1) == 'edit')
		$mode = 'edit';
	else
		$mode = 'list';

	$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,
	));

}