diff options
author | Michael Weimann <mail@michael-weimann.eu> | 2018-12-19 23:13:35 +0100 |
---|---|---|
committer | Michael Weimann <mail@michael-weimann.eu> | 2019-01-14 00:08:24 +0100 |
commit | 813ff430f159fdc8aade236048f4a8ff18ac3b2e (patch) | |
tree | bb8fe0773a03ed43dba3c9cdecbb3343251fdb1a /settings/templates | |
parent | 6993faaf67b6e822f7b03bd972fe42c9b4dd1d5d (diff) | |
download | nextcloud-server-813ff430f159fdc8aade236048f4a8ff18ac3b2e.tar.gz nextcloud-server-813ff430f159fdc8aade236048f4a8ff18ac3b2e.zip |
Implement storing and loading the server info
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/settings/admin/server-info.php | 70 |
1 files changed, 47 insertions, 23 deletions
diff --git a/settings/templates/settings/admin/server-info.php b/settings/templates/settings/admin/server-info.php index 9c2b3fe4318..3690da6d3b4 100644 --- a/settings/templates/settings/admin/server-info.php +++ b/settings/templates/settings/admin/server-info.php @@ -1,11 +1,39 @@ -<?php ?> +<?php +/** + * @copyright Copyright (c) 2018 Michael Weimann <mail@michael-weimann.eu> + * + * @author Michael Weimann <mail@michael-weimann.eu> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +/** + * This file contains the server info settings template. + */ + +/** @var array $_ */ + +?> <div class="section server-info-settings"> <h2><?php p($l->t('Server info')); ?></h2> <p class="settings-hint"> <?php p($l->t('Enter common info about your Nextcloud instance here. These info are visible to all users.')) ?> </p> - <form> + <form id="server-info-form" name="server-info-form"> <div class="margin-bottom"> <label class="label" for="location"><?php p($l->t('Server location')); ?></label> <input @@ -14,6 +42,7 @@ name="location" type="text" maxlength="100" + value="<?php p($_['location']); ?>" placeholder="<?php p($l->t('country')); ?>"> </div> <div> @@ -24,6 +53,7 @@ name="provider" type="text" maxlength="100" + value="<?php p($_['provider']); ?>" placeholder="<?php p($l->t('company or person')); ?>"> </div> <div> @@ -34,6 +64,7 @@ name="providerWebsite" type="url" maxlength="200" + value="<?php p($_['providerWebsite']); ?>" placeholder="<?php p($l->t('link to website')); ?>"> </div> <div class="margin-bottom"> @@ -44,24 +75,30 @@ name="providerPrivacyLink" type="url" maxlength="200" + value="<?php p($_['providerPrivacyLink']); ?>" placeholder="<?php p($l->t('link to privacy policy')); ?>"> </div> <div class="margin-bottom"> - <label class="label" for="admin"><?php p($l->t('Admin contact')); ?></label> - <select class="form-input" name="admin"> - <option>Michael Weimann</option> - <option>Max Mustermann</option> - <option>Peter Petrowski</option> + <label class="label" for="adminContact"><?php p($l->t('Admin contact')); ?></label> + <select class="form-input" name="adminContact" id="adminContact"> + <option value=""><?php p($l->t('choose admin contact')); ?></option> + <?php foreach($_['adminUsers'] as $adminUser): ?> + <option + value="<?php p($adminUser['id']); ?>" + <?php if ($adminUser['id'] === $_['adminContact']): ?>selected="selected"<?php endif; ?>> + <?php p($adminUser['displayName']); ?> + </option> + <?php endforeach; ?> </select> </div> <div class="form-actions"> - <button id="test123" class="button"> + <button id="server-info-submit-button" class="button"> <span class="default-label"> - <?php p($l->t('Save')); ?> + <?php p($l->t('save')); ?> </span> <span class="working-label"> <span class="icon-loading-small-dark"></span> - <?php p($l->t('saving…')); ?> + <?php p($l->t('saving')); ?> </span> <span class="success-label"> <span class="icon-checkmark-white"></span> @@ -72,19 +109,6 @@ <?php p($l->t('error saving settings')); ?> </span> </button> - <script> - const button = $('#test123'); - button.on('click', (event) => { - event.stopImmediatePropagation(); - event.preventDefault(); - button.prop('disabled', true); - button.addClass('button-working'); - setTimeout(() => { - button.removeClass('button-working'); - button.addClass('button-success'); - }, 1500); - }); - </script> </div> </form> </div> |