diff options
author | zotlabs <mike@macgirvin.com> | 2018-03-23 19:03:30 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-03-23 19:03:30 -0700 |
commit | 9a155cf5a576e01960c8d8b6128bfc27077211af (patch) | |
tree | e2019831e0de1863e9a8f69efa5a374310eacc86 /Zotlabs/Widget | |
parent | af8cbf000fb1433b7c7d2c6c4543980f01ba69a9 (diff) | |
download | volse-hubzilla-9a155cf5a576e01960c8d8b6128bfc27077211af.tar.gz volse-hubzilla-9a155cf5a576e01960c8d8b6128bfc27077211af.tar.bz2 volse-hubzilla-9a155cf5a576e01960c8d8b6128bfc27077211af.zip |
turn newmember widget into a feature
Diffstat (limited to 'Zotlabs/Widget')
-rw-r--r-- | Zotlabs/Widget/Newmember.php | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/Zotlabs/Widget/Newmember.php b/Zotlabs/Widget/Newmember.php index afa808e6f..1a4b575b9 100644 --- a/Zotlabs/Widget/Newmember.php +++ b/Zotlabs/Widget/Newmember.php @@ -9,9 +9,6 @@ class Newmember { if(! local_channel()) return EMPTY_STR; - if(get_pconfig(local_channel(), 'system', 'disable_newmemberwidget')) - return EMPTY_STR; - $c = \App::get_channel(); if(! $c) return EMPTY_STR; @@ -20,16 +17,9 @@ class Newmember { if(! $a) return EMPTY_STR; - if(datetime_convert('UTC','UTC',$a['account_created']) < datetime_convert('UTC','UTC', 'now - 60 days')) - return EMPTY_STR; - - // This could be a new account that was used to clone a very old channel - - $ob = \App::get_observer(); - if($ob && array_key_exists('xchan_name_date',$ob) && $ob['xchan_name_date'] < datetime_convert('UTC','UTC','now - 60 days')) + if(! feature_enabled(local_channel(),'start_menu')) return EMPTY_STR; - $options = [ t('Profile Creation'), [ |