Move Module\Profile to Module\Profile\Index

- Move /profiles to Module\Settings\Profile\Index
This commit is contained in:
Hypolite Petovan 2019-10-27 10:08:14 -04:00
parent 3c1f174c7f
commit d1be68b754
25 changed files with 1007 additions and 1359 deletions

View file

@ -35,9 +35,9 @@ class BaseSettingsModule extends BaseModule
];
$tabs[] = [
'label' => DI::l10n()->t('Profiles'),
'url' => 'profiles',
'selected' => (($a->argc == 1) && ($a->argv[0] === 'profiles') ? 'active' : ''),
'label' => DI::l10n()->t('Profile'),
'url' => 'settings/profile',
'selected' => (($a->argc > 1) && ($a->argv[1] === 'profile') ? 'active' : ''),
'accesskey' => 'p',
];