blob: 7a0a3f59ea1d62636a28bd7eb0bc90ac855c700c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
function apps_content(&$a) {
$o .= '<h3>' . t('Applications') . '</h3>';
if($a->apps)
$o .= $a->apps;
else
notice( t('No installed applications.') . EOL);
return $o;
}
|