aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorredmatrix <mike@macgirvin.com>2016-09-01 19:01:02 -0700
committerredmatrix <mike@macgirvin.com>2016-09-01 19:01:02 -0700
commitaf87038150dc9405e62c9eab0b0aacd4f13232d3 (patch)
tree184e0ac0530c1898cf7ecb3dc39d148d60b3b74e /include
parent720f1d71233ab9f6be3ea4ae4b09d823fdca7367 (diff)
downloadvolse-hubzilla-af87038150dc9405e62c9eab0b0aacd4f13232d3.tar.gz
volse-hubzilla-af87038150dc9405e62c9eab0b0aacd4f13232d3.tar.bz2
volse-hubzilla-af87038150dc9405e62c9eab0b0aacd4f13232d3.zip
separate the 'expert' feature into 'advanced_theming' and 'advanced_dirsearch'. Hide both features unless techlevel > 3.
Diffstat (limited to 'include')
-rw-r--r--include/contact_widgets.php2
-rw-r--r--include/features.php46
2 files changed, 37 insertions, 11 deletions
diff --git a/include/contact_widgets.php b/include/contact_widgets.php
index 85c46b0d1..8f76bb4bc 100644
--- a/include/contact_widgets.php
+++ b/include/contact_widgets.php
@@ -13,7 +13,7 @@ function findpeople_widget() {
}
}
- $advanced_search = ((local_channel() && get_pconfig(local_channel(),'feature','expert')) ? t('Advanced') : false);
+ $advanced_search = ((local_channel() && feature_enabled(local_channel(),'advanced_dirsearch')) ? t('Advanced') : false);
return replace_macros(get_markup_template('peoplefind.tpl'),array(
'$findpeople' => t('Find Channels'),
diff --git a/include/features.php b/include/features.php
index 6c5ce147c..b59ab0c3e 100644
--- a/include/features.php
+++ b/include/features.php
@@ -61,7 +61,6 @@ function get_features($filtered = true) {
array('photo_location', t('Photo Location'), t('If location data is available on uploaded photos, link this to a map.'),false,get_config('feature_lock','photo_location')),
array('ajaxchat', t('Access Controlled Chatrooms'), t('Provide chatrooms and chat services with access control.'),true,get_config('feature_lock','ajaxchat')),
array('smart_birthdays', t('Smart Birthdays'), t('Make birthday events timezone aware in case your friends are scattered across the planet.'),true,get_config('feature_lock','smart_birthdays')),
- array('expert', t('Expert Mode'), t('Enable Expert Mode to provide advanced configuration options'),false,get_config('feature_lock','expert')),
),
// Post composition
@@ -86,8 +85,7 @@ function get_features($filtered = true) {
array('personal_tab', t('Network Personal Tab'), t('Enable tab to display only Network posts that you\'ve interacted on'),false,get_config('feature_lock','personal_tab')),
array('new_tab', t('Network New Tab'), t('Enable tab to display all new Network activity'),false,get_config('feature_lock','new_tab')),
array('affinity', t('Affinity Tool'), t('Filter stream activity by depth of relationships'),false,get_config('feature_lock','affinity')),
- array('connfilter', t('Connection Filtering'), t('Filter incoming posts from connections based on keywords/content'),false,get_config('feature_lock','connfilter')),
- array('suggest', t('Suggest Channels'), t('Show channel suggestions'),false,get_config('feature_lock','suggest')),
+ array('suggest', t('Suggest Channels'), t('Show friend and connection suggestions'),false,get_config('feature_lock','suggest')),
),
// Item tools
@@ -103,18 +101,46 @@ function get_features($filtered = true) {
),
);
+ $techlevel = get_account_techlevel();
-
- if($server_role === 'pro' && get_account_techlevel() > 3) {
- $arr['general'][] = [
- 'premium_channel',
- t('Premium Channel'),
- t('Allows you to set restrictions and terms on those that connect with your channel'),
+ if($techlevel > 2) {
+ $arr['net_module'][] = [
+ 'connfilter',
+ t('Connection Filtering'),
+ t('Filter incoming posts from connections based on keywords/content'),
false,
- get_config('feature_lock','premium_channel')
+ get_config('feature_lock','connfilter')
+ ];
+ }
+
+ if($techlevel > 3) {
+ if($server_role === 'pro') {
+ $arr['general'][] = [
+ 'premium_channel',
+ t('Premium Channel'),
+ t('Allows you to set restrictions and terms on those that connect with your channel'),
+ false,
+ get_config('feature_lock','premium_channel')
+ ];
+ }
+ $arr['general'][] = [
+ 'advanced_dirsearch',
+ t('Advanced Directory Search'),
+ t('Allows creation of complex directory search queries'),
+ false,
+ get_config('feature_lock','advanced_dirsearch')
+ ];
+ $arr['general'][] = [
+ 'advanced_theming',
+ t('Advanced Theme and Layout Settings'),
+ t('Allows fine tuning of themes and page layouts'),
+ false,
+ get_config('feature_lock','advanced_theming')
];
}
+
+
// removed any locked features and remove the entire category if this makes it empty
if($filtered) {