This repository has been archived on 2024-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
core/mod/apps.php
2014-05-15 16:43:42 -07:00

22 lines
293 B
PHP

<?php
require_once('include/apps.php');
function apps_content(&$a) {
$apps = get_system_apps();
$o .= print_r($apps,true);
return $o;
// $tpl = get_markup_template("apps.tpl");
// return replace_macros($tpl, array(
// '$title' => t('Applications'),
// '$apps' => $apps,
// ));
}