This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/mod/apps.php
2014-05-15 19:54:37 -07:00

22 lines
274 B
PHP

<?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('Applications'),
'$apps' => $apps,
));
}