X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FBaseSettings.php;h=c1033e730cc6a73a40eea91b87636bd6e1e66a10;hb=d27576059670faf87f80eaae2b4560f85b5310fc;hp=a31b9d8a3cb51b9aa666cf598d4f78b2a941860f;hpb=3f6ec3dd31563550cedb18d956618eee64313f69;p=friendica.git diff --git a/src/Module/BaseSettings.php b/src/Module/BaseSettings.php index a31b9d8a3c..c1033e730c 100644 --- a/src/Module/BaseSettings.php +++ b/src/Module/BaseSettings.php @@ -1,6 +1,6 @@ 'i', ]; + $tabs[] = [ + 'label' => $this->t('Channels'), + 'url' => 'settings/channels', + 'selected' => static::class == Settings\Channels::class ? 'active' : '', + 'accesskey' => '', + ]; + $tabs[] = [ 'label' => $this->t('Social Networks'), 'url' => 'settings/connectors', @@ -151,6 +156,13 @@ class BaseSettings extends BaseModule 'accesskey' => 'b', ]; + $tabs[] = [ + 'label' => $this->t('Remote servers'), + 'url' => 'settings/server', + 'selected' => static::class == Settings\Server\Index::class ? 'active' : '', + 'accesskey' => 's', + ]; + $tabs[] = [ 'label' => $this->t('Export personal data'), 'url' => 'settings/userexport',