From 30efb0c1e641b0b9d3aa40a5a79897c6d06ac3ef Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 24 Apr 2014 10:16:02 +0200 Subject: [PATCH 1/5] menu entry for "Delegations" moved to the settings. --- include/nav.php | 4 +++- mod/settings.php | 24 +++++++++++++++++------- 2 files changed, 20 insertions(+), 8 deletions(-) diff --git a/include/nav.php b/include/nav.php index d1d184650b..108dbbf132 100644 --- a/include/nav.php +++ b/include/nav.php @@ -127,7 +127,9 @@ function nav_info(&$a) { elseif(! get_config('system','no_community_page')) $nav['community'] = array('community', t('Community'), "", t('Conversations on this site')); - $nav['directory'] = array($gdirpath, t('Directory'), "", t('People directory')); + $nav['directory'] = array($gdirpath, t('Directory'), "", t('People directory')); + + $nav['about'] = Array('friendica', t('Information'), "", t('Information about this friendica instance')); /** * diff --git a/mod/settings.php b/mod/settings.php index c85a3b33d9..c86ca69bb9 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -32,7 +32,7 @@ function settings_init(&$a) { $tabs = array( array( - 'label' => t('Account settings'), + 'label' => t('Account'), 'url' => $a->get_baseurl(true).'/settings', 'selected' => (($a->argc == 1)?'active':''), ), @@ -42,21 +42,26 @@ function settings_init(&$a) { 'selected' => (($a->argc > 1) && ($a->argv[1] === 'features') ? 'active' : ''), ), array( - 'label' => t('Display settings'), + 'label' => t('Display'), 'url' => $a->get_baseurl(true).'/settings/display', 'selected' => (($a->argc > 1) && ($a->argv[1] === 'display')?'active':''), ), array( - 'label' => t('Connector settings'), + 'label' => t('Social Networks'), 'url' => $a->get_baseurl(true).'/settings/connectors', 'selected' => (($a->argc > 1) && ($a->argv[1] === 'connectors')?'active':''), ), array( - 'label' => t('Plugin settings'), + 'label' => t('Plugins'), 'url' => $a->get_baseurl(true).'/settings/addon', 'selected' => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''), ), + array( + 'label' => t('Delegations'), + 'url' => $a->get_baseurl(true).'/delegate', + 'selected' => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''), + ), array( 'label' => t('Connected apps'), 'url' => $a->get_baseurl(true) . '/settings/oauth', @@ -719,8 +724,13 @@ function settings_content(&$a) { call_hooks('connector_settings', $settings_connectors); - $diasp_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('Diaspora'), ((get_config('system','diaspora_enabled')) ? t('enabled') : t('disabled'))); - $ostat_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('StatusNet'), ((get_config('system','ostatus_disabled')) ? t('disabled') : t('enabled'))); + if (is_site_admin()) { + $diasp_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('Diaspora'), ((get_config('system','diaspora_enabled')) ? t('enabled') : t('disabled'))); + $ostat_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('StatusNet'), ((get_config('system','ostatus_disabled')) ? t('disabled') : t('enabled'))); + } else { + $diasp_enabled = ""; + $ostat_enabled = ""; + } $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1); if(get_config('system','dfrn_only')) @@ -759,7 +769,7 @@ function settings_content(&$a) { $o .= replace_macros($tpl, array( '$form_security_token' => get_form_security_token("settings_connectors"), - '$title' => t('Connector Settings'), + '$title' => t('Social Networks'), '$diasp_enabled' => $diasp_enabled, '$ostat_enabled' => $ostat_enabled, From b005423ebff9d862687207a5081af0a18b2c29f9 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 24 Apr 2014 10:17:19 +0200 Subject: [PATCH 2/5] New layout for connector settings. New global CSS for things that seems to be identical in most themes. --- view/templates/head.tpl | 1 + view/templates/settings_connectors.tpl | 4 +- view/theme/vier/style.css | 61 ++------------------------ 3 files changed, 7 insertions(+), 59 deletions(-) diff --git a/view/templates/head.tpl b/view/templates/head.tpl index 1b01b71a05..6a1e716703 100644 --- a/view/templates/head.tpl +++ b/view/templates/head.tpl @@ -6,6 +6,7 @@ + {{**}} diff --git a/view/templates/settings_connectors.tpl b/view/templates/settings_connectors.tpl index a61ae4f584..ad462fb674 100644 --- a/view/templates/settings_connectors.tpl +++ b/view/templates/settings_connectors.tpl @@ -17,11 +17,11 @@ {{else}} -

{{$h_imap}}

+

{{$h_imap}}