aboutsummaryrefslogtreecommitdiffstats
path: root/mod/apps.php
blob: aeedb5cda48168a6fc7a6a595964bd7c0a20bedd (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
39
<?php

require_once('include/apps.php');

function apps_content(&$a) {


	if(argc() == 1 || (! local_user())) {

		$apps = get_system_apps();

		//	$o .= print_r($apps,true);

		//	return $o;

		return replace_macros(get_markup_template('apps.tpl'), array(
			'$title' => t('Apps'),
			'$apps' => $apps,
		));
	}

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

}