friendica/mod/apps.php

15 lines
187 B
PHP
Raw Normal View History

2011-02-19 10:01:33 +01:00
<?php
function apps_content(&$a) {
$o .= '<h3>' . t('Applications') . '</h3>';
if($a->apps)
2011-02-19 10:01:33 +01:00
$o .= $a->apps;
else
notice( t('No installed applications.') . EOL);
2011-02-19 10:01:33 +01:00
return $o;
}