streams/mod/apps.php

18 lines
276 B
PHP
Raw Normal View History

2011-02-19 09:01:33 +00:00
<?php
function apps_content(&$a) {
2012-10-22 05:11:02 +00:00
$apps = $a->get_apps();
if(count($apps) == 0)
notice( t('No installed applications.') . EOL);
2011-02-19 09:01:33 +00:00
$tpl = get_markup_template("apps.tpl");
return replace_macros($tpl, array(
2012-10-22 05:11:02 +00:00
'$title' => t('Applications'),
'$apps' => $apps,
));
}