]> git.mxchange.org Git - friendica.git/blob - mod/apps.php
8049b45fb3e846162b8a06ab41bfa2763b61b84a
[friendica.git] / mod / apps.php
1 <?php
2
3 function apps_content(&$a) {
4         $title = t('Applications');
5
6         if(count($a->apps)==0)
7                 notice( t('No installed applications.') . EOL);
8
9
10         $tpl = get_markup_template("apps.tpl");
11         return replace_macros($tpl, array(
12                 '$title' => $title,
13                 '$apps' => $a->apps,
14         ));
15
16         
17
18 }