]> git.mxchange.org Git - friendica.git/blobdiff - mod/apps.php
Merge pull request #205 from unary/filerfix
[friendica.git] / mod / apps.php
old mode 100644 (file)
new mode 100755 (executable)
index f25722d..8049b45
@@ -1,25 +1,18 @@
 <?php
 
-
 function apps_content(&$a) {
+       $title = t('Applications');
 
-       $o .= '<h3>' . t('Applications') . '</h3>';
-
-       $apps = false;
-
-       if(local_user()) {
-               $apps = true;
-               $o .= '<div class="app-title"><a href="notes">' . t('Private Notes') . '</a></div>';
-       }
+       if(count($a->apps)==0)
+               notice( t('No installed applications.') . EOL);
 
-       if($a->apps) {
-               $apps = true;
-               $o .= $a->apps;
-       }
 
-       if(! $apps)
-               notice( t('No installed applications.') . EOL);
+       $tpl = get_markup_template("apps.tpl");
+       return replace_macros($tpl, array(
+               '$title' => $title,
+               '$apps' => $a->apps,
+       ));
 
-       return $o;
+       
 
-}
\ No newline at end of file
+}