aboutsummaryrefslogtreecommitdiffstats
path: root/mod/apps.php
blob: 3d06abd49930ff0d9b3f9bb62f8c8dfe8d77231e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

require_once('include/apps.php');

function apps_content(&$a) {



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

}