Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern Schiessle <bjoern@schiessle.org>2016-08-15 13:03:55 +0300
committerBjoern Schiessle <bjoern@schiessle.org>2016-08-15 13:03:55 +0300
commit5f28b8b5c16f6c4a471fdc083c822b1f9f657476 (patch)
tree16bc3a94aa53c9275c28925b9de9c61e77bbbdfc /settings
parentf3124b5052c0fd8647f816a91b6d250c2570279c (diff)
move apps between 'Language' and 'Session' in personal settings
Diffstat (limited to 'settings')
-rw-r--r--settings/templates/personal.php63
1 files changed, 32 insertions, 31 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php
index edbc0d24c5d..41023018b1b 100644
--- a/settings/templates/personal.php
+++ b/settings/templates/personal.php
@@ -165,6 +165,38 @@ if($_['passwordChangeSupported']) {
<?php endif; ?>
</form>
+
+<div id="clientsbox" class="section clientsbox">
+ <h2><?php p($l->t('Get the apps to sync your files'));?></h2>
+ <a href="<?php p($_['clients']['desktop']); ?>" rel="noreferrer" target="_blank">
+ <img src="<?php print_unescaped(image_path('core', 'desktopapp.svg')); ?>"
+ alt="<?php p($l->t('Desktop client'));?>" />
+ </a>
+ <a href="<?php p($_['clients']['android']); ?>" rel="noreferrer" target="_blank">
+ <img src="<?php print_unescaped(image_path('core', 'googleplay.png')); ?>"
+ alt="<?php p($l->t('Android app'));?>" />
+ </a>
+ <a href="<?php p($_['clients']['ios']); ?>" rel="noreferrer" target="_blank">
+ <img src="<?php print_unescaped(image_path('core', 'appstore.svg')); ?>"
+ alt="<?php p($l->t('iOS app'));?>" />
+ </a>
+
+ <?php if (OC_Util::getEditionString() === ''): ?>
+ <p>
+ <?php print_unescaped($l->t('If you want to support the project
+ <a href="https://nextcloud.com/contribute"
+ target="_blank" rel="noreferrer">join development</a>
+ <or></or>
+ <a href="https://nextcloud.com/contribute"
+ target="_blank" rel="noreferrer">spread the word</a>!'));?>
+ </p>
+ <?php endif; ?>
+
+ <?php if(OC_APP::isEnabled('firstrunwizard')) {?>
+ <p><a class="button" href="#" id="showWizard"><?php p($l->t('Show First Run Wizard again'));?></a></p>
+ <?php }?>
+</div>
+
<div id="sessions" class="section">
<h2><?php p($l->t('Sessions'));?></h2>
<span class="hidden-when-empty"><?php p($l->t('Web, desktop and mobile clients currently logged in to your account.'));?></span>
@@ -217,37 +249,6 @@ if($_['passwordChangeSupported']) {
</div>
</div>
-<div id="clientsbox" class="section clientsbox">
- <h2><?php p($l->t('Get the apps to sync your files'));?></h2>
- <a href="<?php p($_['clients']['desktop']); ?>" rel="noreferrer" target="_blank">
- <img src="<?php print_unescaped(image_path('core', 'desktopapp.svg')); ?>"
- alt="<?php p($l->t('Desktop client'));?>" />
- </a>
- <a href="<?php p($_['clients']['android']); ?>" rel="noreferrer" target="_blank">
- <img src="<?php print_unescaped(image_path('core', 'googleplay.png')); ?>"
- alt="<?php p($l->t('Android app'));?>" />
- </a>
- <a href="<?php p($_['clients']['ios']); ?>" rel="noreferrer" target="_blank">
- <img src="<?php print_unescaped(image_path('core', 'appstore.svg')); ?>"
- alt="<?php p($l->t('iOS app'));?>" />
- </a>
-
- <?php if (OC_Util::getEditionString() === ''): ?>
- <p>
- <?php print_unescaped($l->t('If you want to support the project
- <a href="https://nextcloud.com/contribute"
- target="_blank" rel="noreferrer">join development</a>
- or
- <a href="https://nextcloud.com/contribute"
- target="_blank" rel="noreferrer">spread the word</a>!'));?>
- </p>
- <?php endif; ?>
-
- <?php if(OC_APP::isEnabled('firstrunwizard')) {?>
- <p><a class="button" href="#" id="showWizard"><?php p($l->t('Show First Run Wizard again'));?></a></p>
- <?php }?>
-</div>
-
<?php foreach($_['forms'] as $form) {
if (isset($form['form'])) {?>
<div id="<?php isset($form['anchor']) ? p($form['anchor']) : p('');?>"><?php print_unescaped($form['form']);?></div>