diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-07-02 23:36:43 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-07-02 23:36:43 +0200 |
commit | 5a7b58ac455b716985067c011114e7511cbd7ed2 (patch) | |
tree | 887ef86366c583164bde7733d9b5fa587fdf5b9d /settings | |
parent | e1e4fde697f3c816a7221a71da4b45758e6043fc (diff) | |
parent | 1b83ac7de2c0f060bf2b212dc7d8d151be949d7b (diff) | |
download | nextcloud-server-5a7b58ac455b716985067c011114e7511cbd7ed2.tar.gz nextcloud-server-5a7b58ac455b716985067c011114e7511cbd7ed2.zip |
Merge pull request #9374 from owncloud/link-contribute-promote
add link to contribute and promote pages in personal settings
Diffstat (limited to 'settings')
-rw-r--r-- | settings/css/settings.css | 3 | ||||
-rw-r--r-- | settings/templates/personal.php | 12 |
2 files changed, 15 insertions, 0 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index ef8428bd3ef..7dbaf830096 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -19,6 +19,9 @@ input#openid, input#webdav { width:20em; } .clientsbox .center { margin-top: 10px; } +.clientsbox a { + font-weight: bold; +} #passworderror { display:none; } #passwordchanged { display:none; } diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 1d1500743ad..ecdd6dad24a 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -15,6 +15,18 @@ <a href="<?php p($_['clients']['ios']); ?>" target="_blank"> <img src="<?php print_unescaped(OCP\Util::imagePath('core', 'appstore.png')); ?>" /> </a> + + <?php if (OC_Util::getEditionString() === ''): ?> + <p class="center"> + <?php print_unescaped($l->t('If you want to support the project + <a href="https://owncloud.org/contribute" + target="_blank">join development</a> + or + <a href="https://owncloud.org/promote" + target="_blank">spread the word</a>!'));?> + </p> + <?php endif; ?> + <?php if(OC_APP::isEnabled('firstrunwizard')) {?> <p class="center"><a class="button" href="#" id="showWizard"><?php p($l->t('Show First Run Wizard again'));?></a></p> <?php }?> |