aboutsummaryrefslogblamecommitdiffstats
path: root/mod/apps.php
blob: 8049b45fb3e846162b8a06ab41bfa2763b61b84a (plain) (tree)
1
2
3
4
5
6
7
8
9

     
                            
                                   
 
                              
                                                               
 
 








                                               
<?php

function apps_content(&$a) {
	$title = t('Applications');

	if(count($a->apps)==0)
		notice( t('No installed applications.') . EOL);


	$tpl = get_markup_template("apps.tpl");
	return replace_macros($tpl, array(
		'$title' => $title,
		'$apps' => $a->apps,
	));

	

}