diff options
author | Mario <mario@mariovavti.com> | 2018-09-23 17:52:32 +0200 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-09-23 17:52:32 +0200 |
commit | 1f1d5b9181dd7a9800a2d5c596d8da0f906c53e3 (patch) | |
tree | 950db0a0906566ddd0f6d68a193547c56dbb65fe /include/features.php | |
parent | 9e22ec267c0020e27e4b1cdf5da23b442529da6a (diff) | |
download | volse-hubzilla-1f1d5b9181dd7a9800a2d5c596d8da0f906c53e3.tar.gz volse-hubzilla-1f1d5b9181dd7a9800a2d5c596d8da0f906c53e3.tar.bz2 volse-hubzilla-1f1d5b9181dd7a9800a2d5c596d8da0f906c53e3.zip |
provide settings for mod photo and make it slightly simpler to create new module settings
Diffstat (limited to 'include/features.php')
-rw-r--r-- | include/features.php | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/include/features.php b/include/features.php index 6f6aa88dc..b7d6c0ceb 100644 --- a/include/features.php +++ b/include/features.php @@ -105,15 +105,6 @@ function get_features($filtered = true, $level = (-1)) { ], [ - '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'), - feature_level('photo_location',2), - ], - - [ 'smart_birthdays', t('Smart Birthdays'), t('Make birthday events timezone aware in case your friends are scattered across the planet.'), @@ -369,7 +360,7 @@ function get_features($filtered = true, $level = (-1)) { 'manage' => [ - t('Channel Manager'), + t('Manage'), [ 'nav_channel_select', @@ -383,7 +374,7 @@ function get_features($filtered = true, $level = (-1)) { 'network' => [ - t('Activity'), + t('Network'), [ 'archives', @@ -451,6 +442,20 @@ function get_features($filtered = true, $level = (-1)) { ], + 'photos' => [ + + t('Photos'), + + [ + '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'), + ] + + ], + 'profiles' => [ t('Profiles'), |