|
|
@ -5,10 +5,20 @@ function apps_content(&$a) { |
|
|
|
|
|
|
|
$o .= '<h3>' . t('Applications') . '</h3>'; |
|
|
|
|
|
|
|
$o .= '<div class="app-title"><a href="notes">' . t('Private Notes') . '</a></div>'; |
|
|
|
$apps = false; |
|
|
|
|
|
|
|
if($a->apps) |
|
|
|
if(local_user()) { |
|
|
|
$apps = true; |
|
|
|
$o .= '<div class="app-title"><a href="notes">' . t('Private Notes') . '</a></div>'; |
|
|
|
} |
|
|
|
|
|
|
|
if($a->apps) { |
|
|
|
$apps = true; |
|
|
|
$o .= $a->apps; |
|
|
|
} |
|
|
|
|
|
|
|
if(! $apps) |
|
|
|
notice( t('No installed applications.') . EOL); |
|
|
|
|
|
|
|
return $o; |
|
|
|
|