@@ -39,15 +39,15 @@ discard block |
||
39 | 39 | ?> |
40 | 40 | |
41 | 41 | <div id="quota" class="section"> |
42 | - <div style="width:<?php p($_['usage_relative']);?>%" |
|
43 | - <?php if($_['usage_relative'] > 80): ?> class="quota-warning" <?php endif; ?>> |
|
42 | + <div style="width:<?php p($_['usage_relative']); ?>%" |
|
43 | + <?php if ($_['usage_relative'] > 80): ?> class="quota-warning" <?php endif; ?>> |
|
44 | 44 | <p id="quotatext"> |
45 | 45 | <?php if ($_['quota'] === \OCP\Files\FileInfo::SPACE_UNLIMITED): ?> |
46 | 46 | <?php print_unescaped($l->t('You are using <strong>%s</strong> of <strong>%s</strong>', |
47 | - [$_['usage'], $_['total_space']]));?> |
|
47 | + [$_['usage'], $_['total_space']])); ?> |
|
48 | 48 | <?php else: ?> |
49 | 49 | <?php print_unescaped($l->t('You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)', |
50 | - [$_['usage'], $_['total_space'], $_['usage_relative']]));?> |
|
50 | + [$_['usage'], $_['total_space'], $_['usage_relative']])); ?> |
|
51 | 51 | <?php endif ?> |
52 | 52 | </p> |
53 | 53 | </div> |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | </div> |
82 | 82 | </div> |
83 | 83 | <span class="icon-checkmark hidden"/> |
84 | - <?php if($_['lookupServerUploadEnabled']) { ?> |
|
84 | + <?php if ($_['lookupServerUploadEnabled']) { ?> |
|
85 | 85 | <input type="hidden" id="avatarscope" value="<?php p($_['avatarScope']) ?>"> |
86 | 86 | <?php } ?> |
87 | 87 | </form> |
@@ -95,14 +95,14 @@ discard block |
||
95 | 95 | <span class="icon-password"/> |
96 | 96 | </h2> |
97 | 97 | <input type="text" id="displayname" name="displayname" |
98 | - <?php if(!$_['displayNameChangeSupported']) { print_unescaped('class="hidden"'); } ?> |
|
98 | + <?php if (!$_['displayNameChangeSupported']) { print_unescaped('class="hidden"'); } ?> |
|
99 | 99 | value="<?php p($_['displayName']) ?>" |
100 | 100 | autocomplete="on" autocapitalize="none" autocorrect="off" /> |
101 | - <?php if(!$_['displayNameChangeSupported']) { ?> |
|
102 | - <span><?php if(isset($_['displayName']) && !empty($_['displayName'])) { p($_['displayName']); } else { p($l->t('No display name set')); } ?></span> |
|
101 | + <?php if (!$_['displayNameChangeSupported']) { ?> |
|
102 | + <span><?php if (isset($_['displayName']) && !empty($_['displayName'])) { p($_['displayName']); } else { p($l->t('No display name set')); } ?></span> |
|
103 | 103 | <?php } ?> |
104 | 104 | <span class="icon-checkmark hidden"/> |
105 | - <?php if($_['lookupServerUploadEnabled']) { ?> |
|
105 | + <?php if ($_['lookupServerUploadEnabled']) { ?> |
|
106 | 106 | <input type="hidden" id="displaynamescope" value="<?php p($_['displayNameScope']) ?>"> |
107 | 107 | <?php } ?> |
108 | 108 | </form> |
@@ -113,10 +113,10 @@ discard block |
||
113 | 113 | <label for="email"><?php p($l->t('Email')); ?></label> |
114 | 114 | <span class="icon-password"/> |
115 | 115 | </h2> |
116 | - <div class="verify <?php if ($_['email'] === '' || $_['emailScope'] !== 'public') p('hidden'); ?>"> |
|
116 | + <div class="verify <?php if ($_['email'] === '' || $_['emailScope'] !== 'public') p('hidden'); ?>"> |
|
117 | 117 | <img id="verify-email" title="<?php p($_['emailMessage']); ?>" data-status="<?php p($_['emailVerification']) ?>" src=" |
118 | 118 | <?php |
119 | - switch($_['emailVerification']) { |
|
119 | + switch ($_['emailVerification']) { |
|
120 | 120 | case \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS: |
121 | 121 | p(image_path('core', 'actions/verifying.svg')); |
122 | 122 | break; |
@@ -129,23 +129,23 @@ discard block |
||
129 | 129 | ?>"> |
130 | 130 | </div> |
131 | 131 | <input type="email" name="email" id="email" value="<?php p($_['email']); ?>" |
132 | - <?php if(!$_['displayNameChangeSupported']) { print_unescaped('class="hidden"'); } ?> |
|
132 | + <?php if (!$_['displayNameChangeSupported']) { print_unescaped('class="hidden"'); } ?> |
|
133 | 133 | placeholder="<?php p($l->t('Your email address')); ?>" |
134 | 134 | autocomplete="on" autocapitalize="none" autocorrect="off" /> |
135 | - <?php if(!$_['displayNameChangeSupported']) { ?> |
|
136 | - <span><?php if(isset($_['email']) && !empty($_['email'])) { p($_['email']); } else { p($l->t('No email address set')); }?></span> |
|
135 | + <?php if (!$_['displayNameChangeSupported']) { ?> |
|
136 | + <span><?php if (isset($_['email']) && !empty($_['email'])) { p($_['email']); } else { p($l->t('No email address set')); }?></span> |
|
137 | 137 | <?php } ?> |
138 | - <?php if($_['displayNameChangeSupported']) { ?> |
|
138 | + <?php if ($_['displayNameChangeSupported']) { ?> |
|
139 | 139 | <br /> |
140 | 140 | <em><?php p($l->t('For password reset and notifications')); ?></em> |
141 | 141 | <?php } ?> |
142 | 142 | <span class="icon-checkmark hidden"/> |
143 | - <?php if($_['lookupServerUploadEnabled']) { ?> |
|
143 | + <?php if ($_['lookupServerUploadEnabled']) { ?> |
|
144 | 144 | <input type="hidden" id="emailscope" value="<?php p($_['emailScope']) ?>"> |
145 | 145 | <?php } ?> |
146 | 146 | </form> |
147 | 147 | </div> |
148 | - <?php if($_['lookupServerUploadEnabled']) { ?> |
|
148 | + <?php if ($_['lookupServerUploadEnabled']) { ?> |
|
149 | 149 | <div class="personal-settings-setting-box"> |
150 | 150 | <form id="phoneform" class="section"> |
151 | 151 | <h2> |
@@ -180,10 +180,10 @@ discard block |
||
180 | 180 | <label for="website"><?php p($l->t('Website')); ?></label> |
181 | 181 | <span class="icon-password"/> |
182 | 182 | </h2> |
183 | - <div class="verify <?php if ($_['website'] === '' || $_['websiteScope'] !== 'public') p('hidden'); ?>"> |
|
183 | + <div class="verify <?php if ($_['website'] === '' || $_['websiteScope'] !== 'public') p('hidden'); ?>"> |
|
184 | 184 | <img id="verify-website" title="<?php p($_['websiteMessage']); ?>" data-status="<?php p($_['websiteVerification']) ?>" src=" |
185 | 185 | <?php |
186 | - switch($_['websiteVerification']) { |
|
186 | + switch ($_['websiteVerification']) { |
|
187 | 187 | case \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS: |
188 | 188 | p(image_path('core', 'actions/verifying.svg')); |
189 | 189 | break; |
@@ -194,13 +194,13 @@ discard block |
||
194 | 194 | p(image_path('core', 'actions/verify.svg')); |
195 | 195 | } |
196 | 196 | ?>" |
197 | - <?php if($_['websiteVerification'] === \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS || $_['websiteVerification'] === \OC\Accounts\AccountManager::NOT_VERIFIED) print_unescaped(' class="verify-action"') ?> |
|
197 | + <?php if ($_['websiteVerification'] === \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS || $_['websiteVerification'] === \OC\Accounts\AccountManager::NOT_VERIFIED) print_unescaped(' class="verify-action"') ?> |
|
198 | 198 | > |
199 | 199 | <div class="verification-dialog popovermenu bubble menu"> |
200 | 200 | <div class="verification-dialog-content"> |
201 | 201 | <p class="explainVerification"></p> |
202 | 202 | <p class="verificationCode"></p> |
203 | - <p><?php p($l->t('It can take up to 24 hours before the account is displayed as verified.'));?></p> |
|
203 | + <p><?php p($l->t('It can take up to 24 hours before the account is displayed as verified.')); ?></p> |
|
204 | 204 | </div> |
205 | 205 | </div> |
206 | 206 | </div> |
@@ -217,10 +217,10 @@ discard block |
||
217 | 217 | <label for="twitter"><?php p($l->t('Twitter')); ?></label> |
218 | 218 | <span class="icon-password"/> |
219 | 219 | </h2> |
220 | - <div class="verify <?php if ($_['twitter'] === '' || $_['twitterScope'] !== 'public') p('hidden'); ?>"> |
|
220 | + <div class="verify <?php if ($_['twitter'] === '' || $_['twitterScope'] !== 'public') p('hidden'); ?>"> |
|
221 | 221 | <img id="verify-twitter" title="<?php p($_['twitterMessage']); ?>" data-status="<?php p($_['twitterVerification']) ?>" src=" |
222 | 222 | <?php |
223 | - switch($_['twitterVerification']) { |
|
223 | + switch ($_['twitterVerification']) { |
|
224 | 224 | case \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS: |
225 | 225 | p(image_path('core', 'actions/verifying.svg')); |
226 | 226 | break; |
@@ -231,13 +231,13 @@ discard block |
||
231 | 231 | p(image_path('core', 'actions/verify.svg')); |
232 | 232 | } |
233 | 233 | ?>" |
234 | - <?php if($_['twitterVerification'] === \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS || $_['twitterVerification'] === \OC\Accounts\AccountManager::NOT_VERIFIED) print_unescaped(' class="verify-action"') ?> |
|
234 | + <?php if ($_['twitterVerification'] === \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS || $_['twitterVerification'] === \OC\Accounts\AccountManager::NOT_VERIFIED) print_unescaped(' class="verify-action"') ?> |
|
235 | 235 | > |
236 | 236 | <div class="verification-dialog popovermenu bubble menu"> |
237 | 237 | <div class="verification-dialog-content"> |
238 | 238 | <p class="explainVerification"></p> |
239 | 239 | <p class="verificationCode"></p> |
240 | - <p><?php p($l->t('It can take up to 24 hours before the account is displayed as verified.'));?></p> |
|
240 | + <p><?php p($l->t('It can take up to 24 hours before the account is displayed as verified.')); ?></p> |
|
241 | 241 | </div> |
242 | 242 | </div> |
243 | 243 | </div> |
@@ -262,19 +262,19 @@ discard block |
||
262 | 262 | </div> |
263 | 263 | |
264 | 264 | <?php |
265 | -if($_['passwordChangeSupported']) { |
|
265 | +if ($_['passwordChangeSupported']) { |
|
266 | 266 | script('jquery-showpassword'); |
267 | 267 | ?> |
268 | 268 | <form id="passwordform" class="section"> |
269 | - <h2 class="inlineblock"><?php p($l->t('Password'));?></h2> |
|
269 | + <h2 class="inlineblock"><?php p($l->t('Password')); ?></h2> |
|
270 | 270 | <div id="password-error-msg" class="msg success inlineblock" style="display: none;">Saved</div> |
271 | 271 | <br> |
272 | 272 | <label for="pass1" class="hidden-visually"><?php p($l->t('Current password')); ?>: </label> |
273 | 273 | <input type="password" id="pass1" name="oldpassword" |
274 | - placeholder="<?php p($l->t('Current password'));?>" |
|
274 | + placeholder="<?php p($l->t('Current password')); ?>" |
|
275 | 275 | autocomplete="off" autocapitalize="none" autocorrect="off" /> |
276 | 276 | <div class="personal-show-container"> |
277 | - <label for="pass2" class="hidden-visually"><?php p($l->t('New password'));?>: </label> |
|
277 | + <label for="pass2" class="hidden-visually"><?php p($l->t('New password')); ?>: </label> |
|
278 | 278 | <input type="password" id="pass2" name="newpassword" |
279 | 279 | placeholder="<?php p($l->t('New password')); ?>" |
280 | 280 | data-typetoggle="#personal-show" |
@@ -291,27 +291,27 @@ discard block |
||
291 | 291 | <?php if (isset($_['activelanguage'])) { ?> |
292 | 292 | <form id="language" class="section"> |
293 | 293 | <h2> |
294 | - <label for="languageinput"><?php p($l->t('Language'));?></label> |
|
294 | + <label for="languageinput"><?php p($l->t('Language')); ?></label> |
|
295 | 295 | </h2> |
296 | - <select id="languageinput" name="lang" data-placeholder="<?php p($l->t('Language'));?>"> |
|
297 | - <option value="<?php p($_['activelanguage']['code']);?>"> |
|
298 | - <?php p($_['activelanguage']['name']);?> |
|
296 | + <select id="languageinput" name="lang" data-placeholder="<?php p($l->t('Language')); ?>"> |
|
297 | + <option value="<?php p($_['activelanguage']['code']); ?>"> |
|
298 | + <?php p($_['activelanguage']['name']); ?> |
|
299 | 299 | </option> |
300 | - <?php foreach($_['commonlanguages'] as $language):?> |
|
301 | - <option value="<?php p($language['code']);?>"> |
|
302 | - <?php p($language['name']);?> |
|
300 | + <?php foreach ($_['commonlanguages'] as $language):?> |
|
301 | + <option value="<?php p($language['code']); ?>"> |
|
302 | + <?php p($language['name']); ?> |
|
303 | 303 | </option> |
304 | - <?php endforeach;?> |
|
304 | + <?php endforeach; ?> |
|
305 | 305 | <optgroup label="––––––––––"></optgroup> |
306 | - <?php foreach($_['languages'] as $language):?> |
|
307 | - <option value="<?php p($language['code']);?>"> |
|
308 | - <?php p($language['name']);?> |
|
306 | + <?php foreach ($_['languages'] as $language):?> |
|
307 | + <option value="<?php p($language['code']); ?>"> |
|
308 | + <?php p($language['name']); ?> |
|
309 | 309 | </option> |
310 | - <?php endforeach;?> |
|
310 | + <?php endforeach; ?> |
|
311 | 311 | </select> |
312 | 312 | <a href="https://www.transifex.com/nextcloud/nextcloud/" |
313 | 313 | target="_blank" rel="noreferrer"> |
314 | - <em><?php p($l->t('Help translate'));?></em> |
|
314 | + <em><?php p($l->t('Help translate')); ?></em> |
|
315 | 315 | </a> |
316 | 316 | </form> |
317 | 317 | <?php } ?> |
@@ -319,27 +319,27 @@ discard block |
||
319 | 319 | <?php if (isset($_['activelocale'])) { ?> |
320 | 320 | <form id="locale" class="section"> |
321 | 321 | <h2> |
322 | - <label for="localeinput"><?php p($l->t('Locale'));?></label> |
|
322 | + <label for="localeinput"><?php p($l->t('Locale')); ?></label> |
|
323 | 323 | </h2> |
324 | - <select id="localeinput" name="lang" data-placeholder="<?php p($l->t('Locale'));?>"> |
|
325 | - <option value="<?php p($_['activelocale']['code']);?>"> |
|
326 | - <?php p($_['activelocale']['name']);?> |
|
324 | + <select id="localeinput" name="lang" data-placeholder="<?php p($l->t('Locale')); ?>"> |
|
325 | + <option value="<?php p($_['activelocale']['code']); ?>"> |
|
326 | + <?php p($_['activelocale']['name']); ?> |
|
327 | 327 | </option> |
328 | 328 | <optgroup label="––––––––––"></optgroup> |
329 | - <?php foreach($_['localesforlanguage'] as $locale):?> |
|
330 | - <option value="<?php p($locale['code']);?>"> |
|
331 | - <?php p($locale['name']);?> |
|
329 | + <?php foreach ($_['localesforlanguage'] as $locale):?> |
|
330 | + <option value="<?php p($locale['code']); ?>"> |
|
331 | + <?php p($locale['name']); ?> |
|
332 | 332 | </option> |
333 | - <?php endforeach;?> |
|
333 | + <?php endforeach; ?> |
|
334 | 334 | <optgroup label="––––––––––"></optgroup> |
335 | - <option value="<?php p($_['activelocale']['code']);?>"> |
|
336 | - <?php p($_['activelocale']['name']);?> |
|
335 | + <option value="<?php p($_['activelocale']['code']); ?>"> |
|
336 | + <?php p($_['activelocale']['name']); ?> |
|
337 | 337 | </option> |
338 | - <?php foreach($_['locales'] as $locale):?> |
|
339 | - <option value="<?php p($locale['code']);?>"> |
|
340 | - <?php p($locale['name']);?> |
|
338 | + <?php foreach ($_['locales'] as $locale):?> |
|
339 | + <option value="<?php p($locale['code']); ?>"> |
|
340 | + <?php p($locale['name']); ?> |
|
341 | 341 | </option> |
342 | - <?php endforeach;?> |
|
342 | + <?php endforeach; ?> |
|
343 | 343 | </select> |
344 | 344 | </form> |
345 | 345 | <?php } ?> |