diff options
author | Marius Blüm <marius@lineone.io> | 2016-08-16 11:25:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-16 11:25:48 +0200 |
commit | dec4ee73c574c32d8443754897f1b231db383649 (patch) | |
tree | 5be6374727f893a9a77a7511e87026ba6c465399 /settings | |
parent | c994524e98a0e16c739e66384651642ee85716c2 (diff) | |
parent | 5f28b8b5c16f6c4a471fdc083c822b1f9f657476 (diff) | |
download | nextcloud-server-dec4ee73c574c32d8443754897f1b231db383649.tar.gz nextcloud-server-dec4ee73c574c32d8443754897f1b231db383649.zip |
Merge pull request #871 from nextcloud/move-apps
move apps between 'Language' and 'Session' in personal settings
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/personal.php | 63 |
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> |