]> git.mxchange.org Git - friendica.git/blobdiff - mod/apps.php
ping: cleanup
[friendica.git] / mod / apps.php
index 58752de32231fbaf90b76ae3d84c2f9e16d2ed37..a821ef5d5b89192b5534df7e8b78cd074e9a7964 100644 (file)
@@ -1,15 +1,25 @@
 <?php
 
-
 function apps_content(&$a) {
+    $privateaddons = get_config('config','private_addons');
+      if ($privateaddons === "1") {
+       if((! (local_user())))  {
+       info( t("You must be logged in to use addons. "));
+      return;};
+}
+
+      $title = t('Applications');
 
-       $o .= '<h3>' . t('Applications') . '</h3>';
+       if(count($a->apps)==0)
+               notice( t('No installed applications.') . EOL);
 
-       $o .= '<div class="app-title"><a href="notes">' . t('Private Notes') . '</a></div>';
 
-       if($a->apps)
-               $o .= $a->apps;
+       $tpl = get_markup_template("apps.tpl");
+       return replace_macros($tpl, array(
+               '$title' => $title,
+               '$apps' => $a->apps,
+       ));
 
-       return $o;
+       
 
-}
\ No newline at end of file
+}