mirror of
https://github.com/nextcloud/server.git
synced 2026-03-04 22:41:13 -05:00
To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
46 lines
1.8 KiB
PHP
46 lines
1.8 KiB
PHP
<?php
|
|
/** @var array $_ */
|
|
use OCA\Federation\TrustedServers;
|
|
|
|
/** @var \OCP\IL10N $l */
|
|
script('federation', 'settings-admin');
|
|
style('federation', 'settings-admin')
|
|
?>
|
|
<div id="ocFederationSettings" class="section">
|
|
<h2><?php p($l->t('Trusted servers')); ?></h2>
|
|
<p class="settings-hint"><?php p($l->t('Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing.')); ?></p>
|
|
|
|
<p>
|
|
<input id="autoAddServers" type="checkbox" class="checkbox" <?php if ($_['autoAddServers']) {
|
|
p('checked');
|
|
} ?> />
|
|
<label for="autoAddServers"><?php p($l->t('Add server automatically once a federated share was created successfully')); ?></label>
|
|
</p>
|
|
|
|
<ul id="listOfTrustedServers">
|
|
<?php foreach ($_['trustedServers'] as $trustedServer) { ?>
|
|
<li id="<?php p($trustedServer['id']); ?>">
|
|
<?php if ((int)$trustedServer['status'] === TrustedServers::STATUS_OK) { ?>
|
|
<span class="status success"></span>
|
|
<?php
|
|
} elseif (
|
|
(int)$trustedServer['status'] === TrustedServers::STATUS_PENDING ||
|
|
(int)$trustedServer['status'] === TrustedServers::STATUS_ACCESS_REVOKED
|
|
) { ?>
|
|
<span class="status indeterminate"></span>
|
|
<?php } else {?>
|
|
<span class="status error"></span>
|
|
<?php } ?>
|
|
<?php p($trustedServer['url']); ?>
|
|
<span class="icon icon-delete"></span>
|
|
</li>
|
|
<?php } ?>
|
|
</ul>
|
|
<p id="ocFederationAddServer">
|
|
<button id="ocFederationAddServerButton" class=""><?php p($l->t('+ Add trusted server')); ?></button>
|
|
<input id="serverUrl" class="hidden" type="text" value="" placeholder="<?php p($l->t('Trusted server')); ?>" name="server_url"/>
|
|
<button id="ocFederationSubmit" class="hidden"><?php p($l->t('Add')); ?></button>
|
|
<span class="msg"></span>
|
|
</p>
|
|
|
|
</div>
|