@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | /* |
21 | 21 | * Class autoloader invocation, should be included prior to any other code at the entry points to the application |
22 | 22 | */ |
23 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
23 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
24 | 24 | |
25 | 25 | $auth = new \web\lib\admin\Authentication(); |
26 | 26 | $auth->authenticate(); |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | $fed = new \core\Federation($inst->federation); |
54 | 54 | $allowSb = $fed->getAttributes("fed:silverbullet"); |
55 | 55 | if (count($allowSb) == 0) { |
56 | - throw new Exception("We were told to create a new SB profile, but this " . \config\ConfAssistant::CONSORTIUM['nomenclature_federation'] . " does not allow SB at all!"); |
|
56 | + throw new Exception("We were told to create a new SB profile, but this ".\config\ConfAssistant::CONSORTIUM['nomenclature_federation']." does not allow SB at all!"); |
|
57 | 57 | } |
58 | 58 | // okay, new SB profiles are allowed. |
59 | 59 | // but is there a support:email attribute on inst level? |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | // Create one. |
65 | 65 | $newProfile = $inst->newProfile(core\AbstractProfile::PROFILETYPE_SILVERBULLET); |
66 | 66 | // and modify the REQUEST_URI to add the new profile ID |
67 | - $_SERVER['REQUEST_URI'] = $_SERVER['REQUEST_URI'] . "&profile_id=" . $newProfile->identifier; |
|
67 | + $_SERVER['REQUEST_URI'] = $_SERVER['REQUEST_URI']."&profile_id=".$newProfile->identifier; |
|
68 | 68 | $_GET['profile_id'] = $newProfile->identifier; |
69 | 69 | $profile = $newProfile; |
70 | 70 | } else { |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | if (isset($_POST['command'])) { |
90 | 90 | switch ($_POST['command']) { |
91 | 91 | case \web\lib\common\FormElements::BUTTON_CLOSE: |
92 | - header("Location: overview_org.php?inst_id=" . $inst->identifier); |
|
92 | + header("Location: overview_org.php?inst_id=".$inst->identifier); |
|
93 | 93 | break; |
94 | 94 | case \web\lib\common\FormElements::BUTTON_TERMSOFUSE: |
95 | 95 | if (isset($_POST['agreement']) && $_POST['agreement'] == 'true') { |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | break; |
133 | 133 | } |
134 | 134 | $properName = $validator->syntaxConformUser($elements[0]); |
135 | - $properDate = new DateTime($elements[1] . " 00:00:00"); |
|
135 | + $properDate = new DateTime($elements[1]." 00:00:00"); |
|
136 | 136 | $numberOfActivations = $elements[2] ?? 5; |
137 | 137 | $number = $validator->integer($numberOfActivations); |
138 | 138 | if ($number === FALSE) { // invalid input received, default to sane |
@@ -235,18 +235,18 @@ discard block |
||
235 | 235 | // warn and ask for confirmation unless already confirmed |
236 | 236 | if (!isset($_POST['insecureconfirm']) || $_POST['insecureconfirm'] != "CONFIRM") { |
237 | 237 | echo $deco->pageheader(_("Insecure mail domain!"), "ADMIN-IDP-USERS"); |
238 | - echo "<p>" . sprintf(_("The mail domain of the mail address <strong>%s</strong> is not secure: some or all of the mail servers are not accepting encrypted connections (no consistent support for STARTTLS)."), $properEmail) . "</p>"; |
|
239 | - echo "<p>" . _("The invitation would need to be sent in cleartext across the internet, and can possibly be read and abused by anyone in transit.") . "</p>"; |
|
240 | - echo "<p>" . _("Do you want the system to send this mail anyway?") . "</p>"; |
|
238 | + echo "<p>".sprintf(_("The mail domain of the mail address <strong>%s</strong> is not secure: some or all of the mail servers are not accepting encrypted connections (no consistent support for STARTTLS)."), $properEmail)."</p>"; |
|
239 | + echo "<p>"._("The invitation would need to be sent in cleartext across the internet, and can possibly be read and abused by anyone in transit.")."</p>"; |
|
240 | + echo "<p>"._("Do you want the system to send this mail anyway?")."</p>"; |
|
241 | 241 | echo $formtext; |
242 | - echo "<button type='submit' class='delete'>" . _("DO NOT SEND") . "</button>"; |
|
242 | + echo "<button type='submit' class='delete'>"._("DO NOT SEND")."</button>"; |
|
243 | 243 | echo "</form>"; |
244 | 244 | echo $formtext; |
245 | - echo "<input type='hidden' name='command' value='" . \web\lib\common\FormElements::BUTTON_SENDINVITATIONMAILBYCAT . "'</>"; |
|
245 | + echo "<input type='hidden' name='command' value='".\web\lib\common\FormElements::BUTTON_SENDINVITATIONMAILBYCAT."'</>"; |
|
246 | 246 | echo "<input type='hidden' name='address' value='$properEmail'</>"; |
247 | - echo "<input type='hidden' name='token' value='" . $invitationObject->invitationTokenString . "'</>"; |
|
247 | + echo "<input type='hidden' name='token' value='".$invitationObject->invitationTokenString."'</>"; |
|
248 | 248 | echo "<input type='hidden' name='insecureconfirm' value='CONFIRM'/>"; |
249 | - echo "<button type='submit'>" . _("Send anyway.") . "</button>"; |
|
249 | + echo "<button type='submit'>"._("Send anyway.")."</button>"; |
|
250 | 250 | echo "</form>"; |
251 | 251 | echo $deco->footer(); |
252 | 252 | exit; |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | $activeUsers = $profile->listActiveUsers(); |
298 | 298 | |
299 | 299 | |
300 | -echo $deco->defaultPagePrelude(sprintf(_('Managing %s users'), \core\ProfileSilverbullet::PRODUCTNAME )); |
|
300 | +echo $deco->defaultPagePrelude(sprintf(_('Managing %s users'), \core\ProfileSilverbullet::PRODUCTNAME)); |
|
301 | 301 | |
302 | 302 | ?> |
303 | 303 | <script src='js/option_expand.js' type='text/javascript'></script> |
@@ -337,12 +337,12 @@ discard block |
||
337 | 337 | <img src='../resources/images/icons/loading51.gif' id='spin' alt='loading...' style='position:absolute;left: 50%; top: 50%; transform: translate(-100px, -50px); display:none; z-index: 100;'> |
338 | 338 | <?php echo $uiElements->instLevelInfoBoxes($inst); ?> |
339 | 339 | <div class='infobox'> |
340 | - <h2><?php $tablecaption = sprintf(_('Current %s users'), \core\ProfileSilverbullet::PRODUCTNAME); echo $tablecaption;?></h2> |
|
340 | + <h2><?php $tablecaption = sprintf(_('Current %s users'), \core\ProfileSilverbullet::PRODUCTNAME); echo $tablecaption; ?></h2> |
|
341 | 341 | <table> |
342 | - <caption><?php echo $tablecaption;?></caption> |
|
342 | + <caption><?php echo $tablecaption; ?></caption> |
|
343 | 343 | <tr> |
344 | - <th class="wai-invisible" scope="col"><?php echo _("Property Type");?></th> |
|
345 | - <th class="wai-invisible" scope="col"><?php echo _("Property Value");?></th> |
|
344 | + <th class="wai-invisible" scope="col"><?php echo _("Property Type"); ?></th> |
|
345 | + <th class="wai-invisible" scope="col"><?php echo _("Property Value"); ?></th> |
|
346 | 346 | </tr> |
347 | 347 | |
348 | 348 | <tr> |
@@ -366,19 +366,19 @@ discard block |
||
366 | 366 | case "NOSTIPULATION": |
367 | 367 | break; |
368 | 368 | case "EMAIL-SENT": |
369 | - echo $boundaryPre . $uiElements->boxOkay(_("The e-mail was sent successfully."), _("E-mail OK."), FALSE) . $boundaryPost; |
|
369 | + echo $boundaryPre.$uiElements->boxOkay(_("The e-mail was sent successfully."), _("E-mail OK."), FALSE).$boundaryPost; |
|
370 | 370 | break; |
371 | 371 | case "EMAIL-NOTSENT": |
372 | - echo $boundaryPre . $uiElements->boxError(_("The e-mail was NOT sent."), _("E-mail not OK."), FALSE) . $boundaryPost; |
|
372 | + echo $boundaryPre.$uiElements->boxError(_("The e-mail was NOT sent."), _("E-mail not OK."), FALSE).$boundaryPost; |
|
373 | 373 | break; |
374 | 374 | case "SMS-SENT": |
375 | - echo $boundaryPre . $uiElements->boxOkay(_("The SMS was sent successfully."), _("SMS OK."), FALSE) . $boundaryPost; |
|
375 | + echo $boundaryPre.$uiElements->boxOkay(_("The SMS was sent successfully."), _("SMS OK."), FALSE).$boundaryPost; |
|
376 | 376 | break; |
377 | 377 | case "SMS-NOTSENT": |
378 | - echo $boundaryPre . $uiElements->boxOkay(_("The SMS was NOT sent."), _("SMS not OK."), FALSE) . $boundaryPost; |
|
378 | + echo $boundaryPre.$uiElements->boxOkay(_("The SMS was NOT sent."), _("SMS not OK."), FALSE).$boundaryPost; |
|
379 | 379 | break; |
380 | 380 | case "SMS-FRAGMENT": |
381 | - echo $boundaryPre . $uiElements->boxWarning(_("Only a fragment of the SMS was sent. You should re-send it."), _("SMS Fragment."), FALSE) . $boundaryPost; |
|
381 | + echo $boundaryPre.$uiElements->boxWarning(_("Only a fragment of the SMS was sent. You should re-send it."), _("SMS Fragment."), FALSE).$boundaryPost; |
|
382 | 382 | break; |
383 | 383 | } |
384 | 384 | ?> |
@@ -391,17 +391,17 @@ discard block |
||
391 | 391 | <?php |
392 | 392 | $bufferCurrentUsers = "<table class='sb-user-table' style='max-width:1920px;'> |
393 | 393 | <tr class='sb-title-row'> |
394 | - <td>" . _("User") . "</td> |
|
395 | - <td>" . _("Token/Certificate details") . "</td> |
|
396 | - <td>" . _("User/Token Expiry") . "</td> |
|
397 | - <td>" . _("Actions") . "</td> |
|
394 | + <td>" . _("User")."</td> |
|
395 | + <td>" . _("Token/Certificate details")."</td> |
|
396 | + <td>" . _("User/Token Expiry")."</td> |
|
397 | + <td>" . _("Actions")."</td> |
|
398 | 398 | </tr>"; |
399 | 399 | $bufferPreviousUsers = "<table class='sb-user-table' style='max-width:1920px;'> |
400 | 400 | <tr class='sb-title-row'> |
401 | - <td>" . _("User") . "</td> |
|
402 | - <td>" . _("Certificate details") . "</td> |
|
403 | - <td>" . _("User Expiry") . "</td> |
|
404 | - <td>" . _("Actions") . "</td> |
|
401 | + <td>" . _("User")."</td> |
|
402 | + <td>" . _("Certificate details")."</td> |
|
403 | + <td>" . _("User Expiry")."</td> |
|
404 | + <td>" . _("Actions")."</td> |
|
405 | 405 | </tr>"; |
406 | 406 | |
407 | 407 | natsort($allUsers); |
@@ -458,23 +458,23 @@ discard block |
||
458 | 458 | $display = empty(devices\Devices::listDevices()[$oneCert->device]['display']) ? $oneCert->device : devices\Devices::listDevices()[$oneCert->device]['display']; |
459 | 459 | |
460 | 460 | $bufferText = "<div class='sb-certificate-summary ca-summary' $style> |
461 | - <div class='sb-certificate-details'>" . _("Device:") . " " . $display . |
|
462 | - "<br>" . _("Serial Number:") . " " . dechex($oneCert->serial) . |
|
463 | - "<br>" . _("CN:") . " " . explode('@', $oneCert->username)[0] . "@…" . |
|
464 | - "<br>" . _("Expiry:") . " " . $oneCert->expiry . |
|
465 | - "<br>" . _("Issued:") . " " . $oneCert->issued . |
|
466 | - "</div>" . |
|
461 | + <div class='sb-certificate-details'>"._("Device:")." ".$display. |
|
462 | + "<br>"._("Serial Number:")." ".dechex($oneCert->serial). |
|
463 | + "<br>"._("CN:")." ".explode('@', $oneCert->username)[0]."@…". |
|
464 | + "<br>"._("Expiry:")." ".$oneCert->expiry. |
|
465 | + "<br>"._("Issued:")." ".$oneCert->issued. |
|
466 | + "</div>". |
|
467 | 467 | "<div style='text-align:right;padding-top: 5px; $buttonStyle'>"; |
468 | 468 | |
469 | 469 | if ($buttonText == "") { |
470 | 470 | $bufferText .= $formtext |
471 | - . "<input type='hidden' name='certSerial' value='" . $oneCert->serial . "'/>" |
|
472 | - . "<input type='hidden' name='certAlgo' value='" . $oneCert->ca_type . "'/>" |
|
471 | + . "<input type='hidden' name='certSerial' value='".$oneCert->serial."'/>" |
|
472 | + . "<input type='hidden' name='certAlgo' value='".$oneCert->ca_type."'/>" |
|
473 | 473 | . "<button type='submit' " |
474 | 474 | . "name='command' " |
475 | - . "value='" . \web\lib\common\FormElements::BUTTON_REVOKECREDENTIAL . "' " |
|
475 | + . "value='".\web\lib\common\FormElements::BUTTON_REVOKECREDENTIAL."' " |
|
476 | 476 | . "class='delete' " |
477 | - . "onclick='return confirm(\"" . sprintf(_("The device in question will stop functioning with %s. The revocation cannot be undone. Are you sure you want to do this?"), \config\ConfAssistant::CONSORTIUM['display_name']) . "\")'>" |
|
477 | + . "onclick='return confirm(\"".sprintf(_("The device in question will stop functioning with %s. The revocation cannot be undone. Are you sure you want to do this?"), \config\ConfAssistant::CONSORTIUM['display_name'])."\")'>" |
|
478 | 478 | . _("Revoke") |
479 | 479 | . "</button>" |
480 | 480 | . "</form>"; |
@@ -499,13 +499,13 @@ discard block |
||
499 | 499 | } |
500 | 500 | // wrap the revoked and expired certs in a div that is hidden by default |
501 | 501 | if ($textRevokedCerts !== "") { |
502 | - $textRevokedCerts = "<span style='text-decoration: underline;' id='$oneUserId-revoked-heading' onclick='document.getElementById(\"$oneUserId-revoked-certs\").style.display = \"block\"; document.getElementById(\"$oneUserId-revoked-heading\").style.display = \"none\";'>" . sprintf(ngettext("(show %d revoked certificate)", "(show %d revoked certificates)", $countRevoked), $countRevoked) . "</span><div id='$oneUserId-revoked-certs' style='display:none;'>" . $textRevokedCerts . "</div>"; |
|
502 | + $textRevokedCerts = "<span style='text-decoration: underline;' id='$oneUserId-revoked-heading' onclick='document.getElementById(\"$oneUserId-revoked-certs\").style.display = \"block\"; document.getElementById(\"$oneUserId-revoked-heading\").style.display = \"none\";'>".sprintf(ngettext("(show %d revoked certificate)", "(show %d revoked certificates)", $countRevoked), $countRevoked)."</span><div id='$oneUserId-revoked-certs' style='display:none;'>".$textRevokedCerts."</div>"; |
|
503 | 503 | } |
504 | 504 | if ($textExpiredCerts !== "") { |
505 | - $textExpiredCerts = "<span style='text-decoration: underline;' id='$oneUserId-expired-heading' onclick='document.getElementById(\"$oneUserId-expired-certs\").style.display = \"block\"; document.getElementById(\"$oneUserId-expired-heading\").style.display = \"none\";'>" . sprintf(ngettext("(show %d expired certificate)", "(show %d expired certificates)", $countExpired), $countExpired) . "</span><div id='$oneUserId-expired-certs' style='display:none;'>" . $textExpiredCerts . "</div>"; |
|
505 | + $textExpiredCerts = "<span style='text-decoration: underline;' id='$oneUserId-expired-heading' onclick='document.getElementById(\"$oneUserId-expired-certs\").style.display = \"block\"; document.getElementById(\"$oneUserId-expired-heading\").style.display = \"none\";'>".sprintf(ngettext("(show %d expired certificate)", "(show %d expired certificates)", $countExpired), $countExpired)."</span><div id='$oneUserId-expired-certs' style='display:none;'>".$textExpiredCerts."</div>"; |
|
506 | 506 | } |
507 | 507 | // and push out the HTML |
508 | - ${$outputBuffer} .= $textActiveCerts . "<br/>" . $textExpiredCerts . " " . $textRevokedCerts . "</td>"; |
|
508 | + ${$outputBuffer} .= $textActiveCerts."<br/>".$textExpiredCerts." ".$textRevokedCerts."</td>"; |
|
509 | 509 | $tokenHtmlBuffer = ""; |
510 | 510 | $hasOnePendingInvite = FALSE; |
511 | 511 | foreach ($tokensWithoutCerts as $invitationObject) { |
@@ -516,38 +516,38 @@ discard block |
||
516 | 516 | $tokenHtmlBuffer .= "<tr class='sb-certificate-row'><td></td>"; |
517 | 517 | $jsEncodedBody = str_replace('\n', '%0D%0A', str_replace('"', '', json_encode($invitationObject->invitationMailBody()))); |
518 | 518 | $tokenHtmlBuffer .= "<td>"; |
519 | - $tokenHtmlBuffer .= sprintf(_("The invitation token %s is ready for sending! Choose how to send it:"), "<input type='text' readonly='readonly' style='background-color:lightgrey;' size='60' value='" . $invitationObject->link() . "' name='token' class='identifiedtokenarea-" . $invitationObject->identifier . "'>(…)<br/>"); |
|
519 | + $tokenHtmlBuffer .= sprintf(_("The invitation token %s is ready for sending! Choose how to send it:"), "<input type='text' readonly='readonly' style='background-color:lightgrey;' size='60' value='".$invitationObject->link()."' name='token' class='identifiedtokenarea-".$invitationObject->identifier."'>(…)<br/>"); |
|
520 | 520 | $tokenHtmlBuffer .= "<table> |
521 | - <tr><td style='vertical-align:bottom;'>" . _("E-Mail:") . "</td><td> |
|
521 | + <tr><td style='vertical-align:bottom;'>" . _("E-Mail:")."</td><td> |
|
522 | 522 | $formtext |
523 | - <input type='hidden' value='" . $invitationObject->invitationTokenString . "' name='token'><br/> |
|
523 | + <input type='hidden' value='".$invitationObject->invitationTokenString."' name='token'><br/> |
|
524 | 524 | <input type='text' name='address' id='address-$invitationObject->identifier'/> |
525 | - <button type='button' onclick='window.location=\"mailto:\"+document.getElementById(\"address-$invitationObject->identifier\").value+\"?subject=" . $invitationObject->invitationMailSubject() . "&body=$jsEncodedBody\"; return false;'>" . _("Local mail client") . "</button> |
|
526 | - <button type='submit' name='command' onclick='document.getElementById(\"spin\").style.display =\"block\"' value='" . \web\lib\common\FormElements::BUTTON_SENDINVITATIONMAILBYCAT . "'>" . _("Send with CAT") . "</button> |
|
525 | + <button type='button' onclick='window.location=\"mailto:\"+document.getElementById(\"address-$invitationObject->identifier\").value+\"?subject=".$invitationObject->invitationMailSubject()."&body=$jsEncodedBody\"; return false;'>"._("Local mail client")."</button> |
|
526 | + <button type='submit' name='command' onclick='document.getElementById(\"spin\").style.display =\"block\"' value='" . \web\lib\common\FormElements::BUTTON_SENDINVITATIONMAILBYCAT."'>"._("Send with CAT")."</button> |
|
527 | 527 | </form> |
528 | 528 | </td></tr> |
529 | - <tr><td style='vertical-align:bottom;'>" . _("SMS:") . "</td><td> |
|
529 | + <tr><td style='vertical-align:bottom;'>" . _("SMS:")."</td><td> |
|
530 | 530 | $formtext |
531 | - <input type='hidden' value='" . $invitationObject->invitationTokenString . "' name='token'><br/> |
|
531 | + <input type='hidden' value='".$invitationObject->invitationTokenString."' name='token'><br/> |
|
532 | 532 | <input type='text' name='smsnumber' /> |
533 | - <button type='submit' name='command' value='" . \web\lib\common\FormElements::BUTTON_SENDINVITATIONSMS . "'>" . _("Send in SMS...") . "</button> |
|
533 | + <button type='submit' name='command' value='" . \web\lib\common\FormElements::BUTTON_SENDINVITATIONSMS."'>"._("Send in SMS...")."</button> |
|
534 | 534 | </form> |
535 | 535 | </td></tr> |
536 | - <tr><td style='vertical-align:bottom;'>" . _("Manual:") . "</td><td> |
|
537 | - <button type='button' class='clipboardButton' onclick='clipboardCopy(" . $invitationObject->identifier . ");'>" . _("Copy to Clipboard") . "</button> |
|
536 | + <tr><td style='vertical-align:bottom;'>" . _("Manual:")."</td><td> |
|
537 | + <button type='button' class='clipboardButton' onclick='clipboardCopy(" . $invitationObject->identifier.");'>"._("Copy to Clipboard")."</button> |
|
538 | 538 | <form style='display:inline-block;' method='post' action='inc/displayQRcode.inc.php' onsubmit='popupQRWindow(this); return false;' accept-charset='UTF-8'> |
539 | - <input type='hidden' value='" . $invitationObject->invitationTokenString . "' name='token'><br/> |
|
540 | - <button type='submit'>" . _("Display QR code") . "</button> |
|
539 | + <input type='hidden' value='" . $invitationObject->invitationTokenString."' name='token'><br/> |
|
540 | + <button type='submit'>" . _("Display QR code")."</button> |
|
541 | 541 | </form> |
542 | 542 | </td></tr> |
543 | 543 | |
544 | 544 | </table> |
545 | 545 | </td>"; |
546 | - $tokenHtmlBuffer .= "<td>" . _("Expiry Date:") . " " . $invitationObject->expiry . " UTC<br>" . _("Activations remaining:") . " " . sprintf(_("%d of %d"), $invitationObject->activationsRemaining, $invitationObject->activationsTotal) . "</td>"; |
|
546 | + $tokenHtmlBuffer .= "<td>"._("Expiry Date:")." ".$invitationObject->expiry." UTC<br>"._("Activations remaining:")." ".sprintf(_("%d of %d"), $invitationObject->activationsRemaining, $invitationObject->activationsTotal)."</td>"; |
|
547 | 547 | $tokenHtmlBuffer .= "<td>" |
548 | 548 | . $formtext |
549 | - . "<input type='hidden' name='invitationtoken' value='" . $invitationObject->invitationTokenString . "'/>" |
|
550 | - . "<button type='submit' name='command' value='" . \web\lib\common\FormElements::BUTTON_REVOKEINVITATION . "' class='delete'>" . _("Revoke") . "</button></form>" |
|
549 | + . "<input type='hidden' name='invitationtoken' value='".$invitationObject->invitationTokenString."'/>" |
|
550 | + . "<button type='submit' name='command' value='".\web\lib\common\FormElements::BUTTON_REVOKEINVITATION."' class='delete'>"._("Revoke")."</button></form>" |
|
551 | 551 | . "</td></tr>"; |
552 | 552 | break; |
553 | 553 | case core\SilverbulletInvitation::SB_TOKENSTATUS_EXPIRED: |
@@ -563,10 +563,10 @@ discard block |
||
563 | 563 | } |
564 | 564 | ${$outputBuffer} .= "<td>$formtext |
565 | 565 | <div class='sb-date-container' style='min-width: 200px;'> |
566 | - <span><input type='text' maxlength='19' class='sb-date-picker' name='userexpiry' value='" . $profile->getUserExpiryDate($oneUserId) . "'> (UTC)</span> |
|
566 | + <span><input type='text' maxlength='19' class='sb-date-picker' name='userexpiry' value='".$profile->getUserExpiryDate($oneUserId)."'> (UTC)</span> |
|
567 | 567 | </div> |
568 | 568 | <input type='hidden' name='userid' value='$oneUserId'/> |
569 | - <button type='submit' name='command' value='" . \web\lib\common\FormElements::BUTTON_CHANGEUSEREXPIRY . "'>" . _("Update") . "</button> |
|
569 | + <button type='submit' name='command' value='".\web\lib\common\FormElements::BUTTON_CHANGEUSEREXPIRY."'>"._("Update")."</button> |
|
570 | 570 | </form> |
571 | 571 | </td> |
572 | 572 | <td> |
@@ -574,33 +574,33 @@ discard block |
||
574 | 574 | |
575 | 575 | if ($hasOnePendingInvite || count($validCerts) > 0) { |
576 | 576 | $deletionText = sprintf(_("All of the currently active devices will stop functioning with %s. This cannot be undone. While the user can be re-activated later, they will then need to be re-provisioned with new invitation tokens. Are you sure you want to do this?"), \config\ConfAssistant::CONSORTIUM['display_name']); |
577 | - ${$outputBuffer} .= $formtext . " |
|
577 | + ${$outputBuffer} .= $formtext." |
|
578 | 578 | <input type='hidden' name='userid' value='$oneUserId'/> |
579 | 579 | <button type='submit' " |
580 | 580 | . "name='command' " |
581 | - . "value='" . \web\lib\common\FormElements::BUTTON_DEACTIVATEUSER . "' " |
|
581 | + . "value='".\web\lib\common\FormElements::BUTTON_DEACTIVATEUSER."' " |
|
582 | 582 | . "class='delete' " |
583 | - . ( count($validCerts) > 0 ? "onclick='return confirm(\"" . $deletionText . "\")' " : "" ) |
|
583 | + . (count($validCerts) > 0 ? "onclick='return confirm(\"".$deletionText."\")' " : "") |
|
584 | 584 | . ">" |
585 | 585 | . _("Deactivate User") |
586 | 586 | . "</button> |
587 | 587 | </form>"; |
588 | 588 | } |
589 | - ${$outputBuffer} .= "<form method='post' action='inc/userStats.inc.php?inst_id=" . $profile->institution . "&profile_id=" . $profile->identifier . "&user_id=$oneUserId' onsubmit='popupStatsWindow(this); return false;' accept-charset='UTF-8'> |
|
590 | - <button type='submit'>" . _("Show Authentication Records") . "</button> |
|
589 | + ${$outputBuffer} .= "<form method='post' action='inc/userStats.inc.php?inst_id=".$profile->institution."&profile_id=".$profile->identifier."&user_id=$oneUserId' onsubmit='popupStatsWindow(this); return false;' accept-charset='UTF-8'> |
|
590 | + <button type='submit'>"._("Show Authentication Records")."</button> |
|
591 | 591 | </form>"; |
592 | 592 | if (new DateTime() < new DateTime($expiryDate)) { // current user, allow sending new token |
593 | - ${$outputBuffer} .= $formtext . " |
|
593 | + ${$outputBuffer} .= $formtext." |
|
594 | 594 | <input type='hidden' name='userid' value='$oneUserId'/> |
595 | - <button type='submit' name='command' value='" . \web\lib\common\FormElements::BUTTON_NEWINVITATION . "'>" . _("New Invitation") . "</button> |
|
596 | - <label>" . _("Activations:") . " |
|
595 | + <button type='submit' name='command' value='".\web\lib\common\FormElements::BUTTON_NEWINVITATION."'>"._("New Invitation")."</button> |
|
596 | + <label>" . _("Activations:")." |
|
597 | 597 | <input type='text' name='invitationsquantity' value='5' maxlength='3' style='width: 30px;'/> |
598 | 598 | </label> |
599 | 599 | </form>"; |
600 | 600 | } elseif (count($profile->getUserAuthRecords($oneUserId)) == 0) { // previous user; if there are NO authentication records, allow full deletion - otherwise, need to keep user trace for abuse handling |
601 | - ${$outputBuffer} .= $formtext . " |
|
601 | + ${$outputBuffer} .= $formtext." |
|
602 | 602 | <input type='hidden' name='userid' value='$oneUserId'/> |
603 | - <button type='submit' class='delete' name='command' value='" . \web\lib\common\FormElements::BUTTON_DELETE . "'>" . _("Delete User") . "</button> |
|
603 | + <button type='submit' class='delete' name='command' value='".\web\lib\common\FormElements::BUTTON_DELETE."'>"._("Delete User")."</button> |
|
604 | 604 | </form>"; |
605 | 605 | } |
606 | 606 | ${$outputBuffer} .= "</div> |
@@ -632,13 +632,13 @@ discard block |
||
632 | 632 | . ' If all accounts shown as active above are indeed still valid, please check the box below and push "Save".' |
633 | 633 | . ' If any of the accounts are stale, please deactivate them by pushing the corresponding button before doing this.'), \config\ConfAssistant::SILVERBULLET['gracetime'] ?? core\ProfileSilverbullet::SB_ACKNOWLEDGEMENT_REQUIRED_DAYS); |
634 | 634 | |
635 | - echo $formtext . "<div style='padding-bottom: 20px;'>" |
|
635 | + echo $formtext."<div style='padding-bottom: 20px;'>" |
|
636 | 636 | . " |
637 | 637 | <p>$acknowledgeText</p> |
638 | 638 | <input type='checkbox' name='acknowledge' value='true'> |
639 | - <label>" . sprintf(_("I have verified that all configured users are still eligible for %s."),\config\ConfAssistant::CONSORTIUM['display_name']) . "</label> |
|
639 | + <label>".sprintf(_("I have verified that all configured users are still eligible for %s."), \config\ConfAssistant::CONSORTIUM['display_name'])."</label> |
|
640 | 640 | </div> |
641 | - <button type='submit' name='command' value='" . \web\lib\common\FormElements::BUTTON_ACKUSERELIGIBILITY . "'>" . _("Save") . "</button></form>"; |
|
641 | + <button type='submit' name='command' value='" . \web\lib\common\FormElements::BUTTON_ACKUSERELIGIBILITY."'>"._("Save")."</button></form>"; |
|
642 | 642 | } |
643 | 643 | ?> |
644 | 644 | </div> |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | ?> |
28 | 28 | <?php |
29 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
29 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
30 | 30 | |
31 | 31 | $deco = new \web\lib\admin\PageDecoration(); |
32 | 32 | $validator = new \web\lib\common\InputValidation(); |
@@ -126,8 +126,8 @@ discard block |
||
126 | 126 | <?php |
127 | 127 | echo $uiElements->instLevelInfoBoxes($my_inst); |
128 | 128 | |
129 | - echo "<form enctype='multipart/form-data' action='edit_profile_result.php?inst_id=$my_inst->identifier" . ($my_profile !== NULL ? "&profile_id=" . $my_profile->identifier : "") . "' method='post' accept-charset='UTF-8'> |
|
130 | - <input type='hidden' name='MAX_FILE_SIZE' value='" . \config\Master::MAX_UPLOAD_SIZE . "'>"; |
|
129 | + echo "<form enctype='multipart/form-data' action='edit_profile_result.php?inst_id=$my_inst->identifier".($my_profile !== NULL ? "&profile_id=".$my_profile->identifier : "")."' method='post' accept-charset='UTF-8'> |
|
130 | + <input type='hidden' name='MAX_FILE_SIZE' value='" . \config\Master::MAX_UPLOAD_SIZE."'>"; |
|
131 | 131 | $optionDisplay = new \web\lib\admin\OptionDisplay($profile_options, \core\Options::LEVEL_PROFILE); |
132 | 132 | ?> |
133 | 133 | <fieldset class="option_container"> |
@@ -136,19 +136,19 @@ discard block |
||
136 | 136 | </legend> |
137 | 137 | <?php |
138 | 138 | if ($wizardStyle) { |
139 | - echo "<p>" . _("We will now define a profile for your user group(s). You can add as many profiles as you like by choosing the appropriate button on the end of the page. After we are done, the wizard is finished and you will be taken to the main IdP administration page.") . "</p>"; |
|
139 | + echo "<p>"._("We will now define a profile for your user group(s). You can add as many profiles as you like by choosing the appropriate button on the end of the page. After we are done, the wizard is finished and you will be taken to the main IdP administration page.")."</p>"; |
|
140 | 140 | } |
141 | 141 | ?> |
142 | 142 | <h3><?php echo _("Profile Name and RADIUS realm"); ?></h3> |
143 | 143 | <?php |
144 | 144 | if ($wizardStyle) { |
145 | - echo "<p>" . _("First of all we need a name for the profile. This will be displayed to end users, so you may want to choose a descriptive name like 'Professors', 'Students of the Faculty of Bioscience', etc.") . "</p>"; |
|
146 | - echo "<p>" . _("Optionally, you can provide a longer descriptive text about who this profile is for. If you specify it, it will be displayed on the download page after the user has selected the profile name in the list.") . "</p>"; |
|
147 | - echo "<p>" . _("You can also tell us your RADIUS realm. "); |
|
145 | + echo "<p>"._("First of all we need a name for the profile. This will be displayed to end users, so you may want to choose a descriptive name like 'Professors', 'Students of the Faculty of Bioscience', etc.")."</p>"; |
|
146 | + echo "<p>"._("Optionally, you can provide a longer descriptive text about who this profile is for. If you specify it, it will be displayed on the download page after the user has selected the profile name in the list.")."</p>"; |
|
147 | + echo "<p>"._("You can also tell us your RADIUS realm. "); |
|
148 | 148 | if (\config\Master::FUNCTIONALITY_LOCATIONS['DIAGNOSTICS'] !== NULL) { |
149 | 149 | printf(_("This is useful if you want to use the sanity check module later, which tests reachability of your realm in the %s infrastructure. "), \config\ConfAssistant::CONSORTIUM['display_name']); |
150 | 150 | } |
151 | - echo _("It is required to enter the realm name if you want to support anonymous outer identities (see below).") . "</p>"; |
|
151 | + echo _("It is required to enter the realm name if you want to support anonymous outer identities (see below).")."</p>"; |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | echo $optionDisplay->prefilledOptionTable("profile", $my_inst->federation); |
@@ -203,9 +203,9 @@ discard block |
||
203 | 203 | |
204 | 204 | <?php |
205 | 205 | if ($wizardStyle) { |
206 | - echo "<p>" . sprintf(_("Some installers support a feature called 'Anonymous outer identity'. If you don't know what this is, please read <a href='%s'>this article</a>."), "https://confluence.terena.org/display/H2eduroam/eap-types") . "</p>"; |
|
207 | - echo "<p>" . _("On some platforms, the installers can suggest username endings and/or verify the user input to contain the realm suffix.") . "</p>"; |
|
208 | - echo "<p>" . _("The realm check feature needs to know an outer ID which actually gets a chance to authenticate. If your RADIUS server lets only select usernames pass, it is useful to supply the information which of those (outer ID) username we can use for testing.") . "</p>"; |
|
206 | + echo "<p>".sprintf(_("Some installers support a feature called 'Anonymous outer identity'. If you don't know what this is, please read <a href='%s'>this article</a>."), "https://confluence.terena.org/display/H2eduroam/eap-types")."</p>"; |
|
207 | + echo "<p>"._("On some platforms, the installers can suggest username endings and/or verify the user input to contain the realm suffix.")."</p>"; |
|
208 | + echo "<p>"._("The realm check feature needs to know an outer ID which actually gets a chance to authenticate. If your RADIUS server lets only select usernames pass, it is useful to supply the information which of those (outer ID) username we can use for testing.")."</p>"; |
|
209 | 209 | } |
210 | 210 | ?> |
211 | 211 | <p> |
@@ -224,37 +224,37 @@ discard block |
||
224 | 224 | <tr> |
225 | 225 | <!-- checkbox and input field for anonymity support, available only when realm is known--> |
226 | 226 | <td> |
227 | - <span id='anon_support_label' style='<?php echo ($realm == "" ? "color:#999999" : "" ); ?>'> |
|
227 | + <span id='anon_support_label' style='<?php echo ($realm == "" ? "color:#999999" : ""); ?>'> |
|
228 | 228 | <?php echo _("Enable Anonymous Outer Identity:"); ?> |
229 | 229 | </span> |
230 | 230 | </td> |
231 | 231 | <td> |
232 | - <input type='checkbox' <?php echo ($useAnon != FALSE ? "checked" : "" ) . ($realm == "" ? " disabled" : "" ); ?> name='anon_support' onclick=' |
|
232 | + <input type='checkbox' <?php echo ($useAnon != FALSE ? "checked" : "").($realm == "" ? " disabled" : ""); ?> name='anon_support' onclick=' |
|
233 | 233 | if (this.form.elements["anon_support"].checked !== true) { |
234 | 234 | this.form.elements["anon_local"].setAttribute("disabled", "disabled"); |
235 | 235 | } else { |
236 | 236 | this.form.elements["anon_local"].removeAttribute("disabled"); |
237 | 237 | } |
238 | 238 | ;'/> |
239 | - <input type='text' <?php echo ($useAnon == FALSE ? "disabled" : "" ); ?> name='anon_local' value='<?php echo $anonLocal; ?>'/> |
|
239 | + <input type='text' <?php echo ($useAnon == FALSE ? "disabled" : ""); ?> name='anon_local' value='<?php echo $anonLocal; ?>'/> |
|
240 | 240 | </td> |
241 | 241 | </tr> |
242 | 242 | <tr> |
243 | 243 | <!-- checkbox and input field for check realm outer id, available only when realm is known--> |
244 | 244 | <td> |
245 | - <span id='checkuser_label' style='<?php echo ($realm == "" ? "color:#999999" : "" ); ?>'> |
|
245 | + <span id='checkuser_label' style='<?php echo ($realm == "" ? "color:#999999" : ""); ?>'> |
|
246 | 246 | <?php echo _("Use special Outer Identity for realm checks:"); ?> |
247 | 247 | </span> |
248 | 248 | </td> |
249 | 249 | <td> |
250 | - <input type='checkbox' <?php echo ($checkuserOuter != FALSE ? "checked" : "" ) . ($realm == "" ? " disabled" : "" ); ?> name='checkuser_support' onclick=' |
|
250 | + <input type='checkbox' <?php echo ($checkuserOuter != FALSE ? "checked" : "").($realm == "" ? " disabled" : ""); ?> name='checkuser_support' onclick=' |
|
251 | 251 | if (this.form.elements["checkuser_support"].checked !== true) { |
252 | 252 | this.form.elements["checkuser_local"].setAttribute("disabled", "disabled"); |
253 | 253 | } else { |
254 | 254 | this.form.elements["checkuser_local"].removeAttribute("disabled"); |
255 | 255 | } |
256 | 256 | ;'/> |
257 | - <input type='text' <?php echo ($checkuserOuter == FALSE ? "disabled" : "" ); ?> name='checkuser_local' value='<?php echo $checkuserValue; ?>'/> |
|
257 | + <input type='text' <?php echo ($checkuserOuter == FALSE ? "disabled" : ""); ?> name='checkuser_local' value='<?php echo $checkuserValue; ?>'/> |
|
258 | 258 | </td> |
259 | 259 | </tr> |
260 | 260 | <tr> |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | </td> |
270 | 270 | <td> |
271 | 271 | <input type='checkbox' <?php |
272 | - echo ($verify != FALSE ? "checked" : "" ); |
|
272 | + echo ($verify != FALSE ? "checked" : ""); |
|
273 | 273 | ?> name='verify_support' onclick=' |
274 | 274 | if (this.form.elements["verify_support"].checked !== true || this.form.elements["realm"].value.length == 0) { |
275 | 275 | this.form.elements["hint_support"].setAttribute("disabled", "disabled"); |
@@ -281,12 +281,12 @@ discard block |
||
281 | 281 | </tr> |
282 | 282 | <tr> |
283 | 283 | <td> |
284 | - <span id='hint_label' style='<?php echo ($realm == "" ? "color:#999999" : "" ); ?>'> |
|
284 | + <span id='hint_label' style='<?php echo ($realm == "" ? "color:#999999" : ""); ?>'> |
|
285 | 285 | <?php echo _("Enforce exact realm in username"); ?> |
286 | 286 | </span> |
287 | 287 | </td> |
288 | 288 | <td> |
289 | - <input type='checkbox' <?php echo ($verify == FALSE ? "disabled" : "" ); ?> name='hint_support' <?php echo ( $hint != FALSE ? "checked" : "" ); ?> /> |
|
289 | + <input type='checkbox' <?php echo ($verify == FALSE ? "disabled" : ""); ?> name='hint_support' <?php echo ($hint != FALSE ? "checked" : ""); ?> /> |
|
290 | 290 | </td> |
291 | 291 | </tr> |
292 | 292 | </table> |
@@ -296,20 +296,20 @@ discard block |
||
296 | 296 | |
297 | 297 | <?php |
298 | 298 | if ($wizardStyle) { |
299 | - echo "<p>" . _("The CAT has a download area for end users. There, they will, for example, learn about the support pointers you entered earlier. The CAT can also immediately offer the installers for the profile for download. If you don't want that, you can instead enter a web site location where you want your users to be redirected to. You, as the administrator, can still download the profiles to place them on that page (see the 'Compatibility Matrix' button on the dashboard).") . "</p>"; |
|
299 | + echo "<p>"._("The CAT has a download area for end users. There, they will, for example, learn about the support pointers you entered earlier. The CAT can also immediately offer the installers for the profile for download. If you don't want that, you can instead enter a web site location where you want your users to be redirected to. You, as the administrator, can still download the profiles to place them on that page (see the 'Compatibility Matrix' button on the dashboard).")."</p>"; |
|
300 | 300 | } |
301 | 301 | ?> |
302 | 302 | <p> |
303 | 303 | |
304 | 304 | <?php |
305 | - echo "<span id='redirect_label' style='" . ($realm == "" ? "color:#999999" : "" ) . "'><label for='redirect'>" . _("Redirect end users to own web page:") . "</label></span> |
|
306 | - <input type='checkbox' name='redirect' id='redirect' " . ($blacklisted === FALSE ? "" : "checked " ) . "onclick=' |
|
305 | + echo "<span id='redirect_label' style='".($realm == "" ? "color:#999999" : "")."'><label for='redirect'>"._("Redirect end users to own web page:")."</label></span> |
|
306 | + <input type='checkbox' name='redirect' id='redirect' " . ($blacklisted === FALSE ? "" : "checked ")."onclick=' |
|
307 | 307 | if (this.form.elements[\"redirect\"].checked != true) { |
308 | 308 | this.form.elements[\"redirect_target\"].setAttribute(\"disabled\", \"disabled\"); |
309 | 309 | } else { |
310 | 310 | this.form.elements[\"redirect_target\"].removeAttribute(\"disabled\"); |
311 | 311 | };'/> |
312 | - <input type='text' name='redirect_target' " . ($blacklisted !== FALSE ? "value='$blacklisted'" : "disabled" ) . "/>"; |
|
312 | + <input type='text' name='redirect_target' " . ($blacklisted !== FALSE ? "value='$blacklisted'" : "disabled")."/>"; |
|
313 | 313 | ?> |
314 | 314 | </p> |
315 | 315 | |
@@ -318,7 +318,7 @@ discard block |
||
318 | 318 | <legend><strong><?php echo _("Supported EAP types"); ?></strong></legend> |
319 | 319 | <?php |
320 | 320 | if ($wizardStyle) { |
321 | - echo "<p>" . _("Now, we need to know which EAP types your IdP supports. If you support multiple EAP types, you can assign every type a priority (1=highest). This tool will always generate an automatic installer for the EAP type with the highest priority; only if the user's device can't use that EAP type, we will use an EAP type further down in the list.") . "</p>"; |
|
321 | + echo "<p>"._("Now, we need to know which EAP types your IdP supports. If you support multiple EAP types, you can assign every type a priority (1=highest). This tool will always generate an automatic installer for the EAP type with the highest priority; only if the user's device can't use that EAP type, we will use an EAP type further down in the list.")."</p>"; |
|
322 | 322 | } |
323 | 323 | ?> |
324 | 324 | <?php |
@@ -351,7 +351,7 @@ discard block |
||
351 | 351 | <?php |
352 | 352 | $D = []; |
353 | 353 | foreach ($prefill_methods as $prio => $value) { |
354 | - print '<li>' . $value->getPrintableRep() . "</li>\n"; |
|
354 | + print '<li>'.$value->getPrintableRep()."</li>\n"; |
|
355 | 355 | $D[$value->getPrintableRep()] = $prio; |
356 | 356 | } |
357 | 357 | ?> |
@@ -377,7 +377,7 @@ discard block |
||
377 | 377 | } |
378 | 378 | $display = $a->getPrintableRep(); |
379 | 379 | if (!isset($D[$a->getPrintableRep()])) { |
380 | - print '<li class="eap1">' . $a->getPrintableRep() . "</li>\n"; |
|
380 | + print '<li class="eap1">'.$a->getPrintableRep()."</li>\n"; |
|
381 | 381 | } |
382 | 382 | } |
383 | 383 | ?> |
@@ -390,8 +390,8 @@ discard block |
||
390 | 390 | foreach ($methods as $a) { |
391 | 391 | $display = $a->getPrintableRep(); |
392 | 392 | $v = isset($D[$display]) ? $D[$display] : ''; |
393 | - print '<input type="hidden" class="eapm" name="' . $display . '" id="EAP-' . $display . '" value="' . $display . '">'; |
|
394 | - print '<input type="hidden" class="eapmv" name="' . $display . '-priority" id="EAP-' . $display . '-priority" value="' . $v . '">'; |
|
393 | + print '<input type="hidden" class="eapm" name="'.$display.'" id="EAP-'.$display.'" value="'.$display.'">'; |
|
394 | + print '<input type="hidden" class="eapmv" name="'.$display.'-priority" id="EAP-'.$display.'-priority" value="'.$v.'">'; |
|
395 | 395 | } |
396 | 396 | ?> |
397 | 397 | <br style="clear:both;" /> |
@@ -411,11 +411,11 @@ discard block |
||
411 | 411 | foreach ($optionsAlreadySet as $optionNames) { |
412 | 412 | if (preg_match("/^support:/", $optionNames)) { |
413 | 413 | $has_support_options[$optionNames] = "SET"; |
414 | - $support_text .= "<li><strong>" . $uiElements->displayName($optionNames) . "</strong></li>"; |
|
414 | + $support_text .= "<li><strong>".$uiElements->displayName($optionNames)."</strong></li>"; |
|
415 | 415 | } |
416 | 416 | if (preg_match("/^media:/", $optionNames)) { |
417 | 417 | $has_media_options[$optionNames] = "SET"; |
418 | - $media_text .= "<li><strong>" . $uiElements->displayName($optionNames) . "</strong></li>"; |
|
418 | + $media_text .= "<li><strong>".$uiElements->displayName($optionNames)."</strong></li>"; |
|
419 | 419 | } |
420 | 420 | } |
421 | 421 | $fields = [ |
@@ -424,12 +424,12 @@ discard block |
||
424 | 424 | "media" => _("Media Properties for this profile")]; |
425 | 425 | |
426 | 426 | foreach ($fields as $name => $description) { |
427 | - echo "<fieldset class='option_container' id='" . $name . "_override'> |
|
427 | + echo "<fieldset class='option_container' id='".$name."_override'> |
|
428 | 428 | <legend><strong>$description</strong></legend> |
429 | 429 | <p>"; |
430 | 430 | |
431 | - if (count(${"has_" . $name . "_options"}) > 0) { |
|
432 | - printf(ngettext("The option %s is already defined IdP-wide. If you set it here on profile level, this setting will override the IdP-wide one.", "The options %s are already defined IdP-wide. If you set them here on profile level, these settings will override the IdP-wide ones.", count(${"has_" . $name . "_options"})), "<ul>" . ${$name . "_text"} . "</ul>"); |
|
431 | + if (count(${"has_".$name."_options"}) > 0) { |
|
432 | + printf(ngettext("The option %s is already defined IdP-wide. If you set it here on profile level, this setting will override the IdP-wide one.", "The options %s are already defined IdP-wide. If you set them here on profile level, these settings will override the IdP-wide ones.", count(${"has_".$name."_options"})), "<ul>".${$name."_text"}."</ul>"); |
|
433 | 433 | } |
434 | 434 | |
435 | 435 | echo "</p>"; |
@@ -442,7 +442,7 @@ discard block |
||
442 | 442 | } |
443 | 443 | |
444 | 444 | if ($wizardStyle) { |
445 | - echo "<p>" . _("When you are sure that everything is correct, please click on 'Save data' and you will be taken to your IdP Dashboard page.") . "</p>"; |
|
445 | + echo "<p>"._("When you are sure that everything is correct, please click on 'Save data' and you will be taken to your IdP Dashboard page.")."</p>"; |
|
446 | 446 | } |
447 | -echo "<p><button type='submit' name='submitbutton' value='" . web\lib\common\FormElements::BUTTON_SAVE . "'>" . _("Save data") . "</button><button type='button' class='delete' name='abortbutton' value='abort' onclick='javascript:window.location = \"overview_org.php?inst_id=$my_inst->identifier\"'>" . _("Discard changes") . "</button></p></form>"; |
|
447 | +echo "<p><button type='submit' name='submitbutton' value='".web\lib\common\FormElements::BUTTON_SAVE."'>"._("Save data")."</button><button type='button' class='delete' name='abortbutton' value='abort' onclick='javascript:window.location = \"overview_org.php?inst_id=$my_inst->identifier\"'>"._("Discard changes")."</button></p></form>"; |
|
448 | 448 | echo $deco->footer(); |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | ?> |
28 | 28 | <?php |
29 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
29 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
30 | 30 | |
31 | 31 | $deco = new \web\lib\admin\PageDecoration(); |
32 | 32 | $validator = new \web\lib\common\InputValidation(); |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | |
37 | 37 | if (!isset($_GET['deployment_id'])) { |
38 | 38 | $my_inst->newDeployment(\core\AbstractDeployment::DEPLOYMENTTYPE_MANAGED); |
39 | - header("Location: overview_org.php?inst_id=" . $my_inst->identifier); |
|
39 | + header("Location: overview_org.php?inst_id=".$my_inst->identifier); |
|
40 | 40 | exit(0); |
41 | 41 | } |
42 | 42 | // if we have come this far, we are editing an existing deployment |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | if (in_array('OK', $response)) { |
49 | 49 | $deployment->deactivate(); |
50 | 50 | } |
51 | - header("Location: overview_org.php?inst_id=" . $my_inst->identifier . '&' . urldecode(http_build_query($response))); |
|
51 | + header("Location: overview_org.php?inst_id=".$my_inst->identifier.'&'.urldecode(http_build_query($response))); |
|
52 | 52 | exit(0); |
53 | 53 | } |
54 | 54 | |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | if (in_array('OK', $response)) { |
58 | 58 | $deployment->activate(); |
59 | 59 | } |
60 | - header("Location: overview_org.php?inst_id=" . $my_inst->identifier . '&' . urldecode(http_build_query($response))); |
|
60 | + header("Location: overview_org.php?inst_id=".$my_inst->identifier.'&'.urldecode(http_build_query($response))); |
|
61 | 61 | exit(0); |
62 | 62 | } |
63 | 63 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | $deployment->status = core\DeploymentManaged::INACTIVE; |
79 | 79 | $response = $deployment->setRADIUSconfig(); |
80 | 80 | } |
81 | - header("Location: overview_org.php?inst_id=" . $my_inst->identifier . '&' . urldecode(http_build_query($response))); |
|
81 | + header("Location: overview_org.php?inst_id=".$my_inst->identifier.'&'.urldecode(http_build_query($response))); |
|
82 | 82 | exit(0); |
83 | 83 | } |
84 | 84 | } |
@@ -106,21 +106,21 @@ discard block |
||
106 | 106 | echo $uiElements->instLevelInfoBoxes($my_inst); |
107 | 107 | $deploymentOptions = $deployment->getAttributes(); |
108 | 108 | echo "<form enctype='multipart/form-data' action='edit_hotspot.php?inst_id=$my_inst->identifier&deployment_id=$deployment->identifier' method='post' accept-charset='UTF-8'> |
109 | - <input type='hidden' name='MAX_FILE_SIZE' value='" . \config\Master::MAX_UPLOAD_SIZE . "'>"; |
|
109 | + <input type='hidden' name='MAX_FILE_SIZE' value='".\config\Master::MAX_UPLOAD_SIZE."'>"; |
|
110 | 110 | $optionDisplay = new \web\lib\admin\OptionDisplay($deploymentOptions, \core\Options::LEVEL_PROFILE); |
111 | 111 | ?> |
112 | 112 | <fieldset class='option_container' id='managedsp_override'> |
113 | 113 | <legend> |
114 | 114 | <strong> |
115 | - <?php $tablecaption = _("Options for this deployment"); echo $tablecaption;?> |
|
115 | + <?php $tablecaption = _("Options for this deployment"); echo $tablecaption; ?> |
|
116 | 116 | </strong> |
117 | 117 | </legend> |
118 | 118 | <table> |
119 | - <caption><?php echo $tablecaption;?></caption> |
|
119 | + <caption><?php echo $tablecaption; ?></caption> |
|
120 | 120 | <tr> |
121 | - <th class="wai-invisible" scope="col"><?php echo _("Property Type");?></th> |
|
122 | - <th class="wai-invisible" scope="col"><?php echo _("Language if applicable");?></th> |
|
123 | - <th class="wai-invisible" scope="col"><?php echo _("Property Value");?></th> |
|
121 | + <th class="wai-invisible" scope="col"><?php echo _("Property Type"); ?></th> |
|
122 | + <th class="wai-invisible" scope="col"><?php echo _("Language if applicable"); ?></th> |
|
123 | + <th class="wai-invisible" scope="col"><?php echo _("Property Value"); ?></th> |
|
124 | 124 | </tr> |
125 | 125 | <tr> |
126 | 126 | <!-- input for Operator-Name override--> |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | <!-- input for VLAN identifier for home users--> |
138 | 138 | <td> |
139 | 139 | <span id='vlan_label'> |
140 | - <?php echo sprintf(_("VLAN tag for own users%s:"), ($vlan === NULL ? "" : " " . _("(unset with '0')"))); ?> |
|
140 | + <?php echo sprintf(_("VLAN tag for own users%s:"), ($vlan === NULL ? "" : " "._("(unset with '0')"))); ?> |
|
141 | 141 | </span> |
142 | 142 | </td> |
143 | 143 | <td> |
@@ -153,10 +153,10 @@ discard block |
||
153 | 153 | <?php |
154 | 154 | echo $optionDisplay->prefilledOptionTable("managedsp", $my_inst->federation); |
155 | 155 | ?> |
156 | - <button type='button' class='newoption' onclick='getXML("managedsp", "<?php echo $my_inst->federation ?>")'><?php echo _("Add new option");?></button> |
|
156 | + <button type='button' class='newoption' onclick='getXML("managedsp", "<?php echo $my_inst->federation ?>")'><?php echo _("Add new option"); ?></button> |
|
157 | 157 | </fieldset> |
158 | 158 | |
159 | 159 | <?php |
160 | - echo "<p><button type='submit' name='submitbutton' value='" . web\lib\common\FormElements::BUTTON_SAVE . "'>" . _("Save data") . "</button><button type='button' class='delete' name='abortbutton' value='abort' onclick='javascript:window.location = \"overview_org.php?inst_id=$my_inst->identifier\"'>" . _("Discard changes") . "</button></p></form>"; |
|
160 | + echo "<p><button type='submit' name='submitbutton' value='".web\lib\common\FormElements::BUTTON_SAVE."'>"._("Save data")."</button><button type='button' class='delete' name='abortbutton' value='abort' onclick='javascript:window.location = \"overview_org.php?inst_id=$my_inst->identifier\"'>"._("Discard changes")."</button></p></form>"; |
|
161 | 161 | echo $deco->footer(); |
162 | 162 |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | |
22 | 22 | namespace core; |
23 | 23 | |
24 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
24 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
25 | 25 | |
26 | 26 | $instMgmt = new \core\UserManagement(); |
27 | 27 | $deco = new \web\lib\admin\PageDecoration(); |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | <?php echo $uiElements->infoblock($user->getAttributes(), "user", "User"); ?> |
62 | 62 | <tr> |
63 | 63 | <td> |
64 | - <?php echo "" . _("Unique Identifier") ?> |
|
64 | + <?php echo ""._("Unique Identifier") ?> |
|
65 | 65 | </td> |
66 | 66 | <td> |
67 | 67 | </td> |
@@ -74,14 +74,14 @@ discard block |
||
74 | 74 | <div> |
75 | 75 | <?php |
76 | 76 | if (\config\Master::DB['USER']['readonly'] === FALSE) { |
77 | - echo "<a href='edit_user.php'><button>" . _("Edit User Details") . "</button></a>"; |
|
77 | + echo "<a href='edit_user.php'><button>"._("Edit User Details")."</button></a>"; |
|
78 | 78 | } |
79 | 79 | |
80 | 80 | if ($user->isFederationAdmin()) { |
81 | - echo "<form action='overview_federation.php' method='GET' accept-charset='UTF-8'><button type='submit'>" . sprintf(_('Click here for %s management tasks'), $uiElements->nomenclatureFed) . "</button></form>"; |
|
81 | + echo "<form action='overview_federation.php' method='GET' accept-charset='UTF-8'><button type='submit'>".sprintf(_('Click here for %s management tasks'), $uiElements->nomenclatureFed)."</button></form>"; |
|
82 | 82 | } |
83 | 83 | if ($user->isSuperadmin()) { |
84 | - echo "<form action='112365365321.php' method='GET' accept-charset='UTF-8'><button type='submit'>" . _('Click here to access the superadmin page') . "</button></form>"; |
|
84 | + echo "<form action='112365365321.php' method='GET' accept-charset='UTF-8'><button type='submit'>"._('Click here to access the superadmin page')."</button></form>"; |
|
85 | 85 | } |
86 | 86 | ?> |
87 | 87 | </div> |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | if (\config\Master::FUNCTIONALITY_LOCATIONS['CONFASSISTANT_SILVERBULLET'] == "LOCAL") { |
95 | 95 | $target = "https://wiki.geant.org/x/6Zg7Bw"; // Managed IdP manual |
96 | 96 | } |
97 | - $helptext = "<h3 style='display:inline;'>" . sprintf(_("(Need help? Refer to the <a href='%s'>%s administrator manual</a>)"), $target, $uiElements->nomenclatureInst) . "</h3>"; |
|
97 | + $helptext = "<h3 style='display:inline;'>".sprintf(_("(Need help? Refer to the <a href='%s'>%s administrator manual</a>)"), $target, $uiElements->nomenclatureInst)."</h3>"; |
|
98 | 98 | } else { |
99 | 99 | $helptext = ""; |
100 | 100 | } |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | // we need to run the Federation constructor |
104 | 104 | $cat = new \core\CAT; |
105 | 105 | /// first parameter: number of Identity Providers; second param is the literal configured term for 'Identity Provider' (you may or may not be able to add a plural suffix for your locale) |
106 | - echo "<h2>" . sprintf(ngettext("You are managing the following <span style='display:none'>%d </span>%s:", "You are managing the following <strong>%d</strong> %s:", sizeof($hasInst)), sizeof($hasInst), $uiElements->nomenclatureParticipant) . "</h2>"; |
|
106 | + echo "<h2>".sprintf(ngettext("You are managing the following <span style='display:none'>%d </span>%s:", "You are managing the following <strong>%d</strong> %s:", sizeof($hasInst)), sizeof($hasInst), $uiElements->nomenclatureParticipant)."</h2>"; |
|
107 | 107 | $instlist = []; |
108 | 108 | $my_idps = []; |
109 | 109 | $myFeds = []; |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | $coadmin = new \core\User($username['ID']); |
175 | 175 | $coadmin_name = $coadmin->getAttributes('user:realname'); |
176 | 176 | if (count($coadmin_name) > 0) { |
177 | - echo $coadmin_name[0]['value'] . "<br/>"; |
|
177 | + echo $coadmin_name[0]['value']."<br/>"; |
|
178 | 178 | unset($admins[$number]); |
179 | 179 | } |
180 | 180 | } else { // don't list self |
@@ -193,14 +193,14 @@ discard block |
||
193 | 193 | <td> |
194 | 194 | <?php |
195 | 195 | if ($blessedUser && \config\Master::DB['INST']['readonly'] === FALSE) { |
196 | - echo "<div style='white-space: nowrap;'><form method='post' action='inc/manageAdmins.inc.php?inst_id=" . $the_inst->identifier . "' onsubmit='popupRedirectWindow(this); return false;' accept-charset='UTF-8'><button type='submit'>" . _("Add/Remove Administrators") . "</button></form></div>"; |
|
196 | + echo "<div style='white-space: nowrap;'><form method='post' action='inc/manageAdmins.inc.php?inst_id=".$the_inst->identifier."' onsubmit='popupRedirectWindow(this); return false;' accept-charset='UTF-8'><button type='submit'>"._("Add/Remove Administrators")."</button></form></div>"; |
|
197 | 197 | } |
198 | 198 | ?> |
199 | 199 | </td> |
200 | 200 | <td> <!-- danger zone --> |
201 | 201 | |
202 | 202 | <form action='edit_participant_result.php?inst_id=<?php echo $the_inst->identifier; ?>' method='post' accept-charset='UTF-8'> |
203 | - <button class='delete' type='submit' name='submitbutton' value='<?php echo \web\lib\common\FormElements::BUTTON_DELETE; ?>' onclick="return confirm('<?php echo ( \config\ConfAssistant::CONSORTIUM['selfservice_registration'] === NULL ? sprintf(_("After deleting the %s, you can not recreate it yourself - you need a new invitation token from the %s administrator!"), $uiElements->nomenclatureInst, $uiElements->nomenclatureFed) . " " : "" ) . sprintf(_("Do you really want to delete your %s %s?"), $uiElements->nomenclatureParticipant, $the_inst->name); ?>')"><?php echo sprintf(_("Delete %s"), $uiElements->nomenclatureParticipant); ?></button> |
|
203 | + <button class='delete' type='submit' name='submitbutton' value='<?php echo \web\lib\common\FormElements::BUTTON_DELETE; ?>' onclick="return confirm('<?php echo (\config\ConfAssistant::CONSORTIUM['selfservice_registration'] === NULL ? sprintf(_("After deleting the %s, you can not recreate it yourself - you need a new invitation token from the %s administrator!"), $uiElements->nomenclatureInst, $uiElements->nomenclatureFed)." " : "").sprintf(_("Do you really want to delete your %s %s?"), $uiElements->nomenclatureParticipant, $the_inst->name); ?>')"><?php echo sprintf(_("Delete %s"), $uiElements->nomenclatureParticipant); ?></button> |
|
204 | 204 | </form> |
205 | 205 | <form action='edit_participant_result.php?inst_id=<?php echo $the_inst->identifier; ?>' method='post' accept-charset='UTF-8'> |
206 | 206 | <button class='delete' type='submit' name='submitbutton' value='<?php echo \web\lib\common\FormElements::BUTTON_FLUSH_AND_RESTART; ?>' onclick="return confirm('<?php echo sprintf(_("This action will delete all properties of the %s and start over the configuration from scratch. Do you really want to reset all settings of the %s %s?"), $uiElements->nomenclatureParticipant, $uiElements->nomenclatureParticipant, $the_inst->name); ?>')"><?php echo sprintf(_("Reset all %s settings"), $uiElements->nomenclatureParticipant); ?></button> |
@@ -215,18 +215,18 @@ discard block |
||
215 | 215 | <?php |
216 | 216 | } |
217 | 217 | } else { |
218 | - echo "<h2>" . sprintf(_("You are not managing any %s."), $uiElements->nomenclatureInst) . "</h2>"; |
|
218 | + echo "<h2>".sprintf(_("You are not managing any %s."), $uiElements->nomenclatureInst)."</h2>"; |
|
219 | 219 | } |
220 | 220 | if (\config\Master::DB['INST']['readonly'] === FALSE) { |
221 | 221 | if (\config\ConfAssistant::CONSORTIUM['selfservice_registration'] === NULL) { |
222 | - echo "<p>" . sprintf(_("Please ask your %s administrator to invite you to become an %s administrator."), $uiElements->nomenclatureFed, $uiElements->nomenclatureParticipant) . "</p>"; |
|
222 | + echo "<p>".sprintf(_("Please ask your %s administrator to invite you to become an %s administrator."), $uiElements->nomenclatureFed, $uiElements->nomenclatureParticipant)."</p>"; |
|
223 | 223 | echo "<hr/> |
224 | 224 | <div style='white-space: nowrap;'> |
225 | 225 | <form action='action_enrollment.php' method='get' accept-charset='UTF-8'>" . |
226 | - sprintf(_("Did you receive an invitation token to manage an %s? Please paste it here:"), $uiElements->nomenclatureParticipant) . |
|
226 | + sprintf(_("Did you receive an invitation token to manage an %s? Please paste it here:"), $uiElements->nomenclatureParticipant). |
|
227 | 227 | " <input type='text' id='token' name='token'/> |
228 | 228 | <button type='submit'>" . |
229 | - _("Go!") . " |
|
229 | + _("Go!")." |
|
230 | 230 | </button> |
231 | 231 | </form> |
232 | 232 | </div>"; |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | <div style='white-space: nowrap;'> |
236 | 236 | <form action='action_enrollment.php' method='get'><button type='submit' accept-charset='UTF-8'> |
237 | 237 | <input type='hidden' id='token' name='token' value='SELF-REGISTER'/>" . |
238 | - sprintf(_("New %s Registration"), $uiElements->nomenclatureParticipant) . " |
|
238 | + sprintf(_("New %s Registration"), $uiElements->nomenclatureParticipant)." |
|
239 | 239 | </button> |
240 | 240 | </form> |
241 | 241 | </div>"; |
@@ -190,70 +190,70 @@ discard block |
||
190 | 190 | </div> |
191 | 191 | <?php |
192 | 192 | break; |
193 | - case "core\ProfileRADIUS": |
|
194 | - ?> |
|
193 | + case "core\ProfileRADIUS": |
|
194 | + ?> |
|
195 | 195 | <div style='padding-bottom:20px;'> |
196 | 196 | <h2 style='overflow:auto; display:inline; padding-bottom: 10px;'><?php printf(_("Profile: %s"), $profile_name); ?></h2> |
197 | 197 | <?php |
198 | - $profile_name = $profile_list->name; |
|
199 | - // see if there are any profile-level overrides |
|
200 | - $attribs = $profile_list->getAttributes(); |
|
201 | - // write things into a buffer; we need some function calls to determine |
|
202 | - // readiness - but want to display it before! |
|
203 | - $has_overrides = FALSE; |
|
204 | - foreach ($attribs as $attrib) { |
|
205 | - if ($attrib['level'] == \core\Options::LEVEL_PROFILE && !preg_match("/^(internal:|profile:name|profile:description|eap:)/", $attrib['name'])) { |
|
206 | - $has_overrides = TRUE; |
|
198 | + $profile_name = $profile_list->name; |
|
199 | + // see if there are any profile-level overrides |
|
200 | + $attribs = $profile_list->getAttributes(); |
|
201 | + // write things into a buffer; we need some function calls to determine |
|
202 | + // readiness - but want to display it before! |
|
203 | + $has_overrides = FALSE; |
|
204 | + foreach ($attribs as $attrib) { |
|
205 | + if ($attrib['level'] == \core\Options::LEVEL_PROFILE && !preg_match("/^(internal:|profile:name|profile:description|eap:)/", $attrib['name'])) { |
|
206 | + $has_overrides = TRUE; |
|
207 | + } |
|
207 | 208 | } |
208 | - } |
|
209 | - $buffer_eaptypediv = "<div style='margin-bottom:40px; float:left;'>" . _("<strong>EAP Types</strong> (in order of preference):") . "<br/>"; |
|
210 | - $typelist = $profile_list->getEapMethodsinOrderOfPreference(); |
|
211 | - $allcomplete = TRUE; |
|
212 | - foreach ($typelist as $eaptype) { |
|
213 | - $buffer_eaptypediv .= $eaptype->getPrintableRep(); |
|
214 | - $completeness = $profile_list->isEapTypeDefinitionComplete($eaptype); |
|
215 | - if ($completeness === true) { |
|
216 | - $buffer_eaptypediv .= " <div class='acceptable'>" . _("OK") . "</div>"; |
|
217 | - } else { |
|
218 | - $buffer_eaptypediv .= " <div class='notacceptable'>"; |
|
219 | - $buffer_eaptypediv .= _("Information needed!"); |
|
220 | - if (is_array($completeness)) { |
|
221 | - $buffer_eaptypediv .= "<ul style='margin:1px'>"; |
|
222 | - foreach ($completeness as $missing_attrib) { |
|
223 | - $buffer_eaptypediv .= "<li>" . $uiElements->displayName($missing_attrib) . "</li>"; |
|
209 | + $buffer_eaptypediv = "<div style='margin-bottom:40px; float:left;'>" . _("<strong>EAP Types</strong> (in order of preference):") . "<br/>"; |
|
210 | + $typelist = $profile_list->getEapMethodsinOrderOfPreference(); |
|
211 | + $allcomplete = TRUE; |
|
212 | + foreach ($typelist as $eaptype) { |
|
213 | + $buffer_eaptypediv .= $eaptype->getPrintableRep(); |
|
214 | + $completeness = $profile_list->isEapTypeDefinitionComplete($eaptype); |
|
215 | + if ($completeness === true) { |
|
216 | + $buffer_eaptypediv .= " <div class='acceptable'>" . _("OK") . "</div>"; |
|
217 | + } else { |
|
218 | + $buffer_eaptypediv .= " <div class='notacceptable'>"; |
|
219 | + $buffer_eaptypediv .= _("Information needed!"); |
|
220 | + if (is_array($completeness)) { |
|
221 | + $buffer_eaptypediv .= "<ul style='margin:1px'>"; |
|
222 | + foreach ($completeness as $missing_attrib) { |
|
223 | + $buffer_eaptypediv .= "<li>" . $uiElements->displayName($missing_attrib) . "</li>"; |
|
224 | + } |
|
225 | + $buffer_eaptypediv .= "</ul>"; |
|
224 | 226 | } |
225 | - $buffer_eaptypediv .= "</ul>"; |
|
227 | + $buffer_eaptypediv .= "</div>"; |
|
228 | + $allcomplete = FALSE; |
|
226 | 229 | } |
227 | - $buffer_eaptypediv .= "</div>"; |
|
228 | - $allcomplete = FALSE; |
|
229 | - } |
|
230 | - $attribs = $profile_list->getAttributes(); |
|
231 | - $justOnce = FALSE; |
|
232 | - foreach ($attribs as $attrib) { |
|
233 | - if ($attrib['level'] == \core\Options::LEVEL_METHOD && !preg_match("/^internal:/", $attrib['name']) && !$justOnce) { |
|
234 | - $justOnce = TRUE; |
|
235 | - $buffer_eaptypediv .= "<img src='../resources/images/icons/Letter-E-blue-icon.png' alt='" . _("Options on EAP Method/Device level are in effect.") . "'>"; |
|
230 | + $attribs = $profile_list->getAttributes(); |
|
231 | + $justOnce = FALSE; |
|
232 | + foreach ($attribs as $attrib) { |
|
233 | + if ($attrib['level'] == \core\Options::LEVEL_METHOD && !preg_match("/^internal:/", $attrib['name']) && !$justOnce) { |
|
234 | + $justOnce = TRUE; |
|
235 | + $buffer_eaptypediv .= "<img src='../resources/images/icons/Letter-E-blue-icon.png' alt='" . _("Options on EAP Method/Device level are in effect.") . "'>"; |
|
236 | + } |
|
236 | 237 | } |
238 | + $buffer_eaptypediv .= "<br/>"; |
|
237 | 239 | } |
238 | - $buffer_eaptypediv .= "<br/>"; |
|
239 | - } |
|
240 | - $buffer_eaptypediv .= "</div>"; |
|
240 | + $buffer_eaptypediv .= "</div>"; |
|
241 | 241 | |
242 | - $buffer_headline = "<span style='float:right;'>"; |
|
243 | - $readiness = $profile_list->readinessLevel(); |
|
244 | - if ($has_overrides) { |
|
245 | - $buffer_headline .= $uiElements->boxRemark("", _("Option override on profile level is in effect."), TRUE); |
|
246 | - } |
|
247 | - if (!$allcomplete) { |
|
248 | - $buffer_headline .= $uiElements->boxError("", _("The information in this profile is incomplete."), TRUE); |
|
249 | - } |
|
250 | - switch ($readiness) { |
|
242 | + $buffer_headline = "<span style='float:right;'>"; |
|
243 | + $readiness = $profile_list->readinessLevel(); |
|
244 | + if ($has_overrides) { |
|
245 | + $buffer_headline .= $uiElements->boxRemark("", _("Option override on profile level is in effect."), TRUE); |
|
246 | + } |
|
247 | + if (!$allcomplete) { |
|
248 | + $buffer_headline .= $uiElements->boxError("", _("The information in this profile is incomplete."), TRUE); |
|
249 | + } |
|
250 | + switch ($readiness) { |
|
251 | 251 | case core\AbstractProfile::READINESS_LEVEL_SHOWTIME: |
252 | 252 | $buffer_headline .= $uiElements->boxOkay("", _("This profile is shown on the user download interface."), TRUE); |
253 | 253 | break; |
254 | 254 | case core\AbstractProfile::READINESS_LEVEL_SUFFICIENTCONFIG: |
255 | 255 | $buffer_headline .= $uiElements->boxWarning("", sprintf(_("This profile is NOT shown on the user download interface, even though we have enough information to show. To enable the profile, add the attribute \"%s\" and tick the corresponding box."), $uiElements->displayName("profile:production")), TRUE); |
256 | - } |
|
256 | + } |
|
257 | 257 | |
258 | 258 | $buffer_headline .= "</span></div>"; |
259 | 259 | |
@@ -336,8 +336,8 @@ discard block |
||
336 | 336 | </div> |
337 | 337 | <?php |
338 | 338 | break; |
339 | - default: |
|
340 | - throw new Exception("We were asked to operate on something that is neither a RADIUS nor Silverbullet profile!"); |
|
339 | + default: |
|
340 | + throw new Exception("We were asked to operate on something that is neither a RADIUS nor Silverbullet profile!"); |
|
341 | 341 | } |
342 | 342 | ?> |
343 | 343 | <!-- dummy width to keep a little distance --> |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | ?> |
28 | 28 | <?php |
29 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
29 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
30 | 30 | |
31 | 31 | $deco = new \web\lib\admin\PageDecoration(); |
32 | 32 | $validator = new \web\lib\common\InputValidation(); |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | } else { |
39 | 39 | $link = 'http://'; |
40 | 40 | } |
41 | -$link .= $_SERVER['SERVER_NAME'] . $_SERVER['SCRIPT_NAME']; |
|
41 | +$link .= $_SERVER['SERVER_NAME'].$_SERVER['SCRIPT_NAME']; |
|
42 | 42 | $link = htmlspecialchars($link); |
43 | 43 | |
44 | 44 | echo $deco->defaultPagePrelude(sprintf(_("%s: %s Dashboard"), \config\Master::APPEARANCE['productname'], $uiElements->nomenclatureParticipant)); |
@@ -165,14 +165,14 @@ discard block |
||
165 | 165 | <ul style='margin:1px'> |
166 | 166 | <?php |
167 | 167 | foreach ($completeness as $missing_attrib) { |
168 | - echo "<li>" . $uiElements->displayName($missing_attrib) . "</li>"; |
|
168 | + echo "<li>".$uiElements->displayName($missing_attrib)."</li>"; |
|
169 | 169 | } |
170 | 170 | ?> |
171 | 171 | </ul> |
172 | 172 | </div> |
173 | 173 | <?php |
174 | 174 | } else { |
175 | - echo sprintf(_("You can create up to %d users."), $maxusers[0]['value']) . "<br/>" . sprintf(_("Their credentials will carry the name <strong>%s</strong>."), $profile_list->realm); |
|
175 | + echo sprintf(_("You can create up to %d users."), $maxusers[0]['value'])."<br/>".sprintf(_("Their credentials will carry the name <strong>%s</strong>."), $profile_list->realm); |
|
176 | 176 | } |
177 | 177 | ?> |
178 | 178 | <br/> |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | if ($readonly === FALSE) { |
182 | 182 | ?> |
183 | 183 | <form action='edit_silverbullet.php?inst_id=<?php echo $my_inst->identifier; ?>&profile_id=<?php echo $profile_list->identifier; ?>' method='POST'> |
184 | - <button <?php echo ( is_array($completeness) ? "disabled" : "" ); ?> type='submit' name='sb_action' value='sb_edit'><?php echo _("Manage User Base"); ?></button> |
|
184 | + <button <?php echo (is_array($completeness) ? "disabled" : ""); ?> type='submit' name='sb_action' value='sb_edit'><?php echo _("Manage User Base"); ?></button> |
|
185 | 185 | </form> |
186 | 186 | <?php |
187 | 187 | } |
@@ -206,21 +206,21 @@ discard block |
||
206 | 206 | $has_overrides = TRUE; |
207 | 207 | } |
208 | 208 | } |
209 | - $buffer_eaptypediv = "<div style='margin-bottom:40px; float:left;'>" . _("<strong>EAP Types</strong> (in order of preference):") . "<br/>"; |
|
209 | + $buffer_eaptypediv = "<div style='margin-bottom:40px; float:left;'>"._("<strong>EAP Types</strong> (in order of preference):")."<br/>"; |
|
210 | 210 | $typelist = $profile_list->getEapMethodsinOrderOfPreference(); |
211 | 211 | $allcomplete = TRUE; |
212 | 212 | foreach ($typelist as $eaptype) { |
213 | 213 | $buffer_eaptypediv .= $eaptype->getPrintableRep(); |
214 | 214 | $completeness = $profile_list->isEapTypeDefinitionComplete($eaptype); |
215 | 215 | if ($completeness === true) { |
216 | - $buffer_eaptypediv .= " <div class='acceptable'>" . _("OK") . "</div>"; |
|
216 | + $buffer_eaptypediv .= " <div class='acceptable'>"._("OK")."</div>"; |
|
217 | 217 | } else { |
218 | 218 | $buffer_eaptypediv .= " <div class='notacceptable'>"; |
219 | 219 | $buffer_eaptypediv .= _("Information needed!"); |
220 | 220 | if (is_array($completeness)) { |
221 | 221 | $buffer_eaptypediv .= "<ul style='margin:1px'>"; |
222 | 222 | foreach ($completeness as $missing_attrib) { |
223 | - $buffer_eaptypediv .= "<li>" . $uiElements->displayName($missing_attrib) . "</li>"; |
|
223 | + $buffer_eaptypediv .= "<li>".$uiElements->displayName($missing_attrib)."</li>"; |
|
224 | 224 | } |
225 | 225 | $buffer_eaptypediv .= "</ul>"; |
226 | 226 | } |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | foreach ($attribs as $attrib) { |
233 | 233 | if ($attrib['level'] == \core\Options::LEVEL_METHOD && !preg_match("/^internal:/", $attrib['name']) && !$justOnce) { |
234 | 234 | $justOnce = TRUE; |
235 | - $buffer_eaptypediv .= "<img src='../resources/images/icons/Letter-E-blue-icon.png' alt='" . _("Options on EAP Method/Device level are in effect.") . "'>"; |
|
235 | + $buffer_eaptypediv .= "<img src='../resources/images/icons/Letter-E-blue-icon.png' alt='"._("Options on EAP Method/Device level are in effect.")."'>"; |
|
236 | 236 | } |
237 | 237 | } |
238 | 238 | $buffer_eaptypediv .= "<br/>"; |
@@ -270,7 +270,7 @@ discard block |
||
270 | 270 | if (\config\Master::FUNCTIONALITY_LOCATIONS['DIAGNOSTICS'] == "LOCAL") { |
271 | 271 | $diagUrl = "../diag/"; |
272 | 272 | } else { |
273 | - $diagUrl = \config\Master::FUNCTIONALITY_LOCATIONS['DIAGNOSTICS'] . "/diag/"; |
|
273 | + $diagUrl = \config\Master::FUNCTIONALITY_LOCATIONS['DIAGNOSTICS']."/diag/"; |
|
274 | 274 | } |
275 | 275 | ?> |
276 | 276 | <form action='<?php echo $diagUrl; ?>action_realmcheck.php?inst_id=$my_inst->identifier&profile_id=$profile_list->identifier' method='post' accept-charset='UTF-8'> |
@@ -307,9 +307,9 @@ discard block |
||
307 | 307 | ?> |
308 | 308 | <div style='display: flex;'> |
309 | 309 | <?php |
310 | - $idpLevelUrl = ( isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on" ? 'https://' : 'http://') . $_SERVER['SERVER_NAME'] . dirname(dirname($_SERVER['SCRIPT_NAME'])) . "?idp=" . $my_inst->identifier; |
|
311 | - $displayurl = $idpLevelUrl . "&profile=" . $profile_list->identifier; |
|
312 | - $QRurl = $idpLevelUrl . "&profile=" . $profile_list->identifier; |
|
310 | + $idpLevelUrl = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on" ? 'https://' : 'http://').$_SERVER['SERVER_NAME'].dirname(dirname($_SERVER['SCRIPT_NAME']))."?idp=".$my_inst->identifier; |
|
311 | + $displayurl = $idpLevelUrl."&profile=".$profile_list->identifier; |
|
312 | + $QRurl = $idpLevelUrl."&profile=".$profile_list->identifier; |
|
313 | 313 | $qrCode = new \chillerlan\QRCode\QRCode(new \chillerlan\QRCode\QROptions([ |
314 | 314 | 'outputType' => \chillerlan\QRCode\QRCode::OUTPUT_IMAGE_PNG, |
315 | 315 | 'eccLevel' => \chillerlan\QRCode\QRCode::ECC_H, |
@@ -321,9 +321,9 @@ discard block |
||
321 | 321 | if (empty($rawQr)) { |
322 | 322 | throw new Exception("Something went seriously wrong during QR code generation!"); |
323 | 323 | } |
324 | - $uri = "data:image/png;base64," . base64_encode($uiElements->pngInjectConsortiumLogo($rawQr, web\lib\admin\UIElements::QRCODE_PIXELS_PER_SYMBOL)); |
|
324 | + $uri = "data:image/png;base64,".base64_encode($uiElements->pngInjectConsortiumLogo($rawQr, web\lib\admin\UIElements::QRCODE_PIXELS_PER_SYMBOL)); |
|
325 | 325 | $size = getimagesize($uri); |
326 | - echo "<img width='" . ($size[0] / 4) . "' height='" . ($size[1] / 4) . "' src='$uri' alt='QR-code'/>"; |
|
326 | + echo "<img width='".($size[0] / 4)."' height='".($size[1] / 4)."' src='$uri' alt='QR-code'/>"; |
|
327 | 327 | |
328 | 328 | //echo "<nobr>$displayurl</nobr></a>"; |
329 | 329 | echo "<p>$displayurl</p></a>"; |
@@ -385,7 +385,7 @@ discard block |
||
385 | 385 | <?php |
386 | 386 | $hotspotProfiles = $my_inst->listDeployments(); |
387 | 387 | if (count($hotspotProfiles) == 0) { // no profiles yet. |
388 | - echo "<h2>" . sprintf(_("There are not yet any known deployments for your %s."), $uiElements->nomenclatureHotspot) . "</h2>"; |
|
388 | + echo "<h2>".sprintf(_("There are not yet any known deployments for your %s."), $uiElements->nomenclatureHotspot)."</h2>"; |
|
389 | 389 | } |
390 | 390 | |
391 | 391 | foreach ($hotspotProfiles as $counter => $deploymentObject) { |
@@ -403,7 +403,7 @@ discard block |
||
403 | 403 | ?> |
404 | 404 | <div style='display: table-row;'> |
405 | 405 | <div class='profilebox' style='display: table-cell;'> |
406 | - <h2><?php echo core\DeploymentManaged::PRODUCTNAME . " (<span style='color:" . ( $deploymentObject->status == \core\AbstractDeployment::INACTIVE ? "red;'>" . _("inactive") : "green;'>" . _("active") ) . "</span>)"; ?></h2> |
|
406 | + <h2><?php echo core\DeploymentManaged::PRODUCTNAME." (<span style='color:".($deploymentObject->status == \core\AbstractDeployment::INACTIVE ? "red;'>"._("inactive") : "green;'>"._("active"))."</span>)"; ?></h2> |
|
407 | 407 | <table> |
408 | 408 | <caption><?php echo _("Deployment Details"); ?></caption> |
409 | 409 | <tr> |
@@ -416,13 +416,13 @@ discard block |
||
416 | 416 | <td><strong><?php echo _("Your primary RADIUS server") ?></strong><br/> |
417 | 417 | <?php |
418 | 418 | if ($deploymentObject->host1_v4 !== NULL) { |
419 | - echo _("IPv4") . ": " . $deploymentObject->host1_v4; |
|
419 | + echo _("IPv4").": ".$deploymentObject->host1_v4; |
|
420 | 420 | } |
421 | 421 | if ($deploymentObject->host1_v4 !== NULL && $deploymentObject->host1_v6 !== NULL) { |
422 | 422 | echo "<br/>"; |
423 | 423 | } |
424 | 424 | if ($deploymentObject->host1_v6 !== NULL) { |
425 | - echo _("IPv6") . ": " . $deploymentObject->host1_v6; |
|
425 | + echo _("IPv6").": ".$deploymentObject->host1_v6; |
|
426 | 426 | } |
427 | 427 | ?> |
428 | 428 | </td> |
@@ -430,9 +430,9 @@ discard block |
||
430 | 430 | <td><?php echo $deploymentObject->port1; ?></td> |
431 | 431 | <td> |
432 | 432 | <?php |
433 | - echo "<img src='" . $radiusMessages[$deploymentObject->radius_status_1]['icon'] . |
|
434 | - "' alt='" . $radiusMessages[$deploymentObject->radius_status_1]['text'] . |
|
435 | - "' title='" . $radiusMessages[$deploymentObject->radius_status_1]['text'] . "'>"; |
|
433 | + echo "<img src='".$radiusMessages[$deploymentObject->radius_status_1]['icon']. |
|
434 | + "' alt='".$radiusMessages[$deploymentObject->radius_status_1]['text']. |
|
435 | + "' title='".$radiusMessages[$deploymentObject->radius_status_1]['text']."'>"; |
|
436 | 436 | ?> |
437 | 437 | </td> |
438 | 438 | </tr> |
@@ -440,22 +440,22 @@ discard block |
||
440 | 440 | <td><strong><?php echo _("Your backup RADIUS server") ?><br/></strong> |
441 | 441 | <?php |
442 | 442 | if ($deploymentObject->host2_v4 !== NULL) { |
443 | - echo _("IPv4") . ": " . $deploymentObject->host2_v4; |
|
443 | + echo _("IPv4").": ".$deploymentObject->host2_v4; |
|
444 | 444 | } |
445 | 445 | if ($deploymentObject->host2_v4 !== NULL && $deploymentObject->host2_v6 !== NULL) { |
446 | 446 | echo "<br/>"; |
447 | 447 | } |
448 | 448 | if ($deploymentObject->host2_v6 !== NULL) { |
449 | - echo _("IPv6") . ": " . $deploymentObject->host2_v6; |
|
449 | + echo _("IPv6").": ".$deploymentObject->host2_v6; |
|
450 | 450 | } |
451 | 451 | ?></td> |
452 | 452 | <td><?php echo _("RADIUS port number: ") ?></td> |
453 | 453 | <td><?php echo $deploymentObject->port2; ?></td> |
454 | 454 | <td> |
455 | 455 | <?php |
456 | - echo "<img src='" . $radiusMessages[$deploymentObject->radius_status_2]['icon'] . |
|
457 | - "' alt='" . $radiusMessages[$deploymentObject->radius_status_2]['text'] . |
|
458 | - "' title='" . $radiusMessages[$deploymentObject->radius_status_2]['text'] . "'>"; |
|
456 | + echo "<img src='".$radiusMessages[$deploymentObject->radius_status_2]['icon']. |
|
457 | + "' alt='".$radiusMessages[$deploymentObject->radius_status_2]['text']. |
|
458 | + "' title='".$radiusMessages[$deploymentObject->radius_status_2]['text']."'>"; |
|
459 | 459 | ?> |
460 | 460 | </td> |
461 | 461 | </tr> |
@@ -507,12 +507,12 @@ discard block |
||
507 | 507 | if (isset($res['FAILURE']) && $res['FAILURE'] > 0) { |
508 | 508 | echo '<br>'; |
509 | 509 | if ($res['FAILURE'] == 2) { |
510 | - echo ' <span style="color: red;">' . _("Activation failure.") . '</span>'; |
|
510 | + echo ' <span style="color: red;">'._("Activation failure.").'</span>'; |
|
511 | 511 | } else { |
512 | 512 | if (isset($_GET['res'][1]) && $_GET['res']['1'] == 'FAILURE') { |
513 | - echo ' <span style="color: red;">' . _("Activation failure for your primary RADIUS server.") . '</span>'; |
|
513 | + echo ' <span style="color: red;">'._("Activation failure for your primary RADIUS server.").'</span>'; |
|
514 | 514 | } else { |
515 | - echo ' <span style="color: red;">' . _("Activation failure for your backup RADIUS server.") . '</span>'; |
|
515 | + echo ' <span style="color: red;">'._("Activation failure for your backup RADIUS server.").'</span>'; |
|
516 | 516 | } |
517 | 517 | } |
518 | 518 | } |
@@ -532,12 +532,12 @@ discard block |
||
532 | 532 | if ($res['FAILURE'] > 0) { |
533 | 533 | echo '<br>'; |
534 | 534 | if ($res['FAILURE'] == 2) { |
535 | - echo ' <span style="color: red;">' . _("Failure during deactivation, your request is queued for handling") . '</span>'; |
|
535 | + echo ' <span style="color: red;">'._("Failure during deactivation, your request is queued for handling").'</span>'; |
|
536 | 536 | } else { |
537 | 537 | if (isset($_GET['res'][1]) && $_GET['res']['1'] == 'FAILURE') { |
538 | - echo ' <span style="color: red;">' . _("Deactivation failure for your primary RADIUS server, your request is queued.") . '</span>'; |
|
538 | + echo ' <span style="color: red;">'._("Deactivation failure for your primary RADIUS server, your request is queued.").'</span>'; |
|
539 | 539 | } else { |
540 | - echo ' <span style="color: red;">' . _("Deactivation failure for your backup RADIUS server, your request is queued.") . '</span>'; |
|
540 | + echo ' <span style="color: red;">'._("Deactivation failure for your backup RADIUS server, your request is queued.").'</span>'; |
|
541 | 541 | } |
542 | 542 | } |
543 | 543 | } |