aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Notes.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-09-24 11:46:18 +0200
committerMario Vavti <mario@mariovavti.com>2018-09-24 11:46:18 +0200
commitc3aa15cc165730b6e67de580065ace255454dfb5 (patch)
tree7a3ed6285851c0fbe4556bc141af890f56d675b8 /Zotlabs/Widget/Notes.php
parentb45bd901e05db6cb797f83cb9c0276911b965286 (diff)
downloadvolse-hubzilla-c3aa15cc165730b6e67de580065ace255454dfb5.tar.gz
volse-hubzilla-c3aa15cc165730b6e67de580065ace255454dfb5.tar.bz2
volse-hubzilla-c3aa15cc165730b6e67de580065ace255454dfb5.zip
appification of notes
Diffstat (limited to 'Zotlabs/Widget/Notes.php')
-rw-r--r--Zotlabs/Widget/Notes.php14
1 files changed, 10 insertions, 4 deletions
diff --git a/Zotlabs/Widget/Notes.php b/Zotlabs/Widget/Notes.php
index 5c83a550f..238008d81 100644
--- a/Zotlabs/Widget/Notes.php
+++ b/Zotlabs/Widget/Notes.php
@@ -2,20 +2,26 @@
namespace Zotlabs\Widget;
+use Zotlabs\Lib\Apps;
+
class Notes {
function widget($arr) {
if(! local_channel())
- return '';
- if(! feature_enabled(local_channel(),'private_notes'))
- return '';
+ return EMPTY_STR;
+
+ if(! Apps::system_app_installed(local_channel(), 'Notes'))
+ return EMPTY_STR;
$text = get_pconfig(local_channel(),'notes','text');
- $o = replace_macros(get_markup_template('notes.tpl'), array(
+ $tpl = get_markup_template('notes.tpl');
+
+ $o = replace_macros($tpl, array(
'$banner' => t('Notes'),
'$text' => $text,
'$save' => t('Save'),
+ '$app' => ((isset($arr['app'])) ? true : false)
));
return $o;