diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-10 14:19:56 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-10 14:19:56 +0200 |
commit | caff1023ea72bb2ea94130e18a2a6e2ccf819e5f (patch) | |
tree | 186d494c2aea5dea7255d3584ef5d595fc6e6194 /apps/federatedfilesharing/templates | |
parent | edf8ce32cffdb920e8171207b342abbd7f1fbe73 (diff) | |
download | nextcloud-server-caff1023ea72bb2ea94130e18a2a6e2ccf819e5f.tar.gz nextcloud-server-caff1023ea72bb2ea94130e18a2a6e2ccf819e5f.zip |
Format control structures, classes, methods and function
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>
Diffstat (limited to 'apps/federatedfilesharing/templates')
-rw-r--r-- | apps/federatedfilesharing/templates/settings-admin.php | 28 |
1 files changed, 20 insertions, 8 deletions
diff --git a/apps/federatedfilesharing/templates/settings-admin.php b/apps/federatedfilesharing/templates/settings-admin.php index fbbeecd88bf..a7041d90821 100644 --- a/apps/federatedfilesharing/templates/settings-admin.php +++ b/apps/federatedfilesharing/templates/settings-admin.php @@ -5,7 +5,7 @@ script('federatedfilesharing', 'settings-admin'); style('federatedfilesharing', 'settings-admin'); ?> -<?php if($_['internalOnly'] === false): ?> +<?php if ($_['internalOnly'] === false): ?> <div id="fileSharingSettings" class="section"> <h2> @@ -19,29 +19,37 @@ style('federatedfilesharing', 'settings-admin'); <p> <input type="checkbox" name="outgoing_server2server_share_enabled" id="outgoingServer2serverShareEnabled" class="checkbox" - value="1" <?php if ($_['outgoingServer2serverShareEnabled']) print_unescaped('checked="checked"'); ?> /> + value="1" <?php if ($_['outgoingServer2serverShareEnabled']) { + print_unescaped('checked="checked"'); +} ?> /> <label for="outgoingServer2serverShareEnabled"> <?php p($l->t('Allow users on this server to send shares to other servers'));?> </label> </p> <p> <input type="checkbox" name="incoming_server2server_share_enabled" id="incomingServer2serverShareEnabled" class="checkbox" - value="1" <?php if ($_['incomingServer2serverShareEnabled']) print_unescaped('checked="checked"'); ?> /> + value="1" <?php if ($_['incomingServer2serverShareEnabled']) { + print_unescaped('checked="checked"'); +} ?> /> <label for="incomingServer2serverShareEnabled"> <?php p($l->t('Allow users on this server to receive shares from other servers'));?> </label><br/> </p> - <?php if($_['federatedGroupSharingSupported']): ?> + <?php if ($_['federatedGroupSharingSupported']): ?> <p> <input type="checkbox" name="outgoing_server2server_group_share_enabled" id="outgoingServer2serverGroupShareEnabled" class="checkbox" - value="1" <?php if ($_['outgoingServer2serverGroupShareEnabled']) print_unescaped('checked="checked"'); ?> /> + value="1" <?php if ($_['outgoingServer2serverGroupShareEnabled']) { + print_unescaped('checked="checked"'); +} ?> /> <label for="outgoingServer2serverGroupShareEnabled"> <?php p($l->t('Allow users on this server to send shares to groups on other servers'));?> </label> </p> <p> <input type="checkbox" name="incoming_server2server_group_share_enabled" id="incomingServer2serverGroupShareEnabled" class="checkbox" - value="1" <?php if ($_['incomingServer2serverGroupShareEnabled']) print_unescaped('checked="checked"'); ?> /> + value="1" <?php if ($_['incomingServer2serverGroupShareEnabled']) { + print_unescaped('checked="checked"'); +} ?> /> <label for="incomingServer2serverGroupShareEnabled"> <?php p($l->t('Allow users on this server to receive group shares from other servers'));?> </label><br/> @@ -49,14 +57,18 @@ style('federatedfilesharing', 'settings-admin'); <?php endif; ?> <p> <input type="checkbox" name="lookupServerEnabled" id="lookupServerEnabled" class="checkbox" - value="1" <?php if ($_['lookupServerEnabled']) print_unescaped('checked="checked"'); ?> /> + value="1" <?php if ($_['lookupServerEnabled']) { + print_unescaped('checked="checked"'); +} ?> /> <label for="lookupServerEnabled"> <?php p($l->t('Search global and public address book for users'));?> </label><br/> </p> <p> <input type="checkbox" name="lookupServerUploadEnabled" id="lookupServerUploadEnabled" class="checkbox" - value="1" <?php if ($_['lookupServerUploadEnabled']) print_unescaped('checked="checked"'); ?> /> + value="1" <?php if ($_['lookupServerUploadEnabled']) { + print_unescaped('checked="checked"'); +} ?> /> <label for="lookupServerUploadEnabled"> <?php p($l->t('Allow users to publish their data to a global and public address book'));?> </label><br/> |