move oauth_client management and guest access tokens to features rather than auto-enabling at various feature levels. This involves string changes and should *not* go into 3.2RC.
This commit is contained in:
parent
68c6d7a099
commit
f34e6d8977
@ -79,7 +79,7 @@ class Settings_menu {
|
|||||||
'selected' => ''
|
'selected' => ''
|
||||||
);
|
);
|
||||||
|
|
||||||
if(get_account_techlevel() > 0) {
|
if(feature_enabled(local_channel(),'oauth_clients')) {
|
||||||
$tabs[] = array(
|
$tabs[] = array(
|
||||||
'label' => t('Connected apps'),
|
'label' => t('Connected apps'),
|
||||||
'url' => z_root() . '/settings/oauth',
|
'url' => z_root() . '/settings/oauth',
|
||||||
@ -87,7 +87,7 @@ class Settings_menu {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(get_account_techlevel() > 2) {
|
if(feature_enabled(local_channel(),'access_tokens')) {
|
||||||
$tabs[] = array(
|
$tabs[] = array(
|
||||||
'label' => t('Guest Access Tokens'),
|
'label' => t('Guest Access Tokens'),
|
||||||
'url' => z_root() . '/settings/tokens',
|
'url' => z_root() . '/settings/tokens',
|
||||||
|
@ -54,14 +54,6 @@ function get_features($filtered = true) {
|
|||||||
t('General Features'),
|
t('General Features'),
|
||||||
|
|
||||||
|
|
||||||
[
|
|
||||||
'multi_profiles',
|
|
||||||
t('Multiple Profiles'),
|
|
||||||
t('Ability to create multiple profiles'),
|
|
||||||
false,
|
|
||||||
get_config('feature_lock','multi_profiles'),
|
|
||||||
feature_level('multi_profiles',3),
|
|
||||||
],
|
|
||||||
|
|
||||||
[
|
[
|
||||||
'advanced_profiles',
|
'advanced_profiles',
|
||||||
@ -163,14 +155,6 @@ function get_features($filtered = true) {
|
|||||||
feature_level('ajaxchat',1),
|
feature_level('ajaxchat',1),
|
||||||
],
|
],
|
||||||
|
|
||||||
[
|
|
||||||
'permcats',
|
|
||||||
t('Permission Groups'),
|
|
||||||
t('Provide alternate connection permission roles.'),
|
|
||||||
false,
|
|
||||||
get_config('feature_lock','permcats'),
|
|
||||||
feature_level('permcats',2),
|
|
||||||
],
|
|
||||||
|
|
||||||
[
|
[
|
||||||
'smart_birthdays',
|
'smart_birthdays',
|
||||||
@ -219,6 +203,49 @@ function get_features($filtered = true) {
|
|||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
||||||
|
'access_control' => [
|
||||||
|
t('Access Control and Permissions'),
|
||||||
|
|
||||||
|
[
|
||||||
|
'multi_profiles',
|
||||||
|
t('Multiple Profiles'),
|
||||||
|
t('Ability to create multiple profiles'),
|
||||||
|
false,
|
||||||
|
get_config('feature_lock','multi_profiles'),
|
||||||
|
feature_level('multi_profiles',3),
|
||||||
|
],
|
||||||
|
|
||||||
|
|
||||||
|
[
|
||||||
|
'permcats',
|
||||||
|
t('Permission Groups'),
|
||||||
|
t('Provide alternate connection permission roles.'),
|
||||||
|
false,
|
||||||
|
get_config('feature_lock','permcats'),
|
||||||
|
feature_level('permcats',2),
|
||||||
|
],
|
||||||
|
|
||||||
|
[
|
||||||
|
'oauth_clients',
|
||||||
|
t('OAuth Clients'),
|
||||||
|
t('Manage authenticatication tokens for mobile and remote apps.'),
|
||||||
|
false,
|
||||||
|
get_config('feature_lock','oauth_clients'),
|
||||||
|
feature_level('oauth_clients',1),
|
||||||
|
],
|
||||||
|
|
||||||
|
[
|
||||||
|
'access_tokens',
|
||||||
|
t('Access Tokens'),
|
||||||
|
t('Create access tokens so that non-members can access private content.'),
|
||||||
|
false,
|
||||||
|
get_config('feature_lock','access_tokens'),
|
||||||
|
feature_level('access_tokens',2),
|
||||||
|
],
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
// Post composition
|
// Post composition
|
||||||
'composition' => [
|
'composition' => [
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user