apps menu file

This commit is contained in:
Friendika 2011-02-19 01:01:33 -08:00
parent 642a71ffde
commit 3d1b153dec
1 changed files with 14 additions and 0 deletions

14
mod/apps.php Normal file
View File

@ -0,0 +1,14 @@
<?php
function apps_content(&$a) {
$o .= '<h3>' . t('Applications') . '</h3>';
if($a->apps)
$o .= $a->apps;
return $o;
}