]> git.mxchange.org Git - friendica.git/blob - mod/apps.php
configurable format for date input selectors
[friendica.git] / mod / apps.php
1 <?php
2
3
4 function apps_content(&$a) {
5
6         $o .= '<h3>' . t('Applications') . '</h3>';
7
8         if($a->apps)
9                 $o .= $a->apps;
10         else
11                 notice( t('No installed applications.') . EOL);
12
13         return $o;
14
15 }