friendica/mod/apps.php
2011-06-13 20:32:30 -07:00

15 lines
187 B
PHP

<?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;
}