@@ -25,7 +25,7 @@ |
||
| 25 | 25 | * @author Stefan Winter <[email protected]> |
| 26 | 26 | * @package Core |
| 27 | 27 | */ |
| 28 | -require_once dirname(dirname(__FILE__)) . "/config/_config.php"; |
|
| 28 | +require_once dirname(dirname(__FILE__))."/config/_config.php"; |
|
| 29 | 29 | |
| 30 | 30 | $Gui = new \web\lib\user\Gui(); |
| 31 | 31 | // ... unless overwritten by direct GET/POST parameter in the request or a SESSION setting |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | } else { |
| 147 | 147 | $this->databaseHandle->exec("INSERT INTO ownership (user_id, institution_id, blesslevel, orig_mail) VALUES(?, ?, ?, ?)", "siss", $owner, $catId, $level, $destMail); |
| 148 | 148 | } |
| 149 | - $this->loggerInstance->writeAudit((string) $owner, "OWN", "IdP " . $invitationDetails->cat_institution_id . " - added user as owner"); |
|
| 149 | + $this->loggerInstance->writeAudit((string) $owner, "OWN", "IdP ".$invitationDetails->cat_institution_id." - added user as owner"); |
|
| 150 | 150 | common\Entity::outOfThePotatoes(); |
| 151 | 151 | return new IdP($invitationDetails->cat_institution_id); |
| 152 | 152 | } |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | $idp = new IdP($fed->newIdP($owner, $invitationDetails->invite_issuer_level, $invitationDetails->invite_dest_mail, $bestnameguess)); |
| 169 | 169 | } |
| 170 | 170 | $idp->addAttribute("general:instname", 'C', $bestnameguess); |
| 171 | - $this->loggerInstance->writeAudit($owner, "NEW", "IdP " . $idp->identifier . " - created from invitation"); |
|
| 171 | + $this->loggerInstance->writeAudit($owner, "NEW", "IdP ".$idp->identifier." - created from invitation"); |
|
| 172 | 172 | |
| 173 | 173 | // in case we have more admins in the queue which were invited to |
| 174 | 174 | // administer the same inst but haven't redeemed their invitations |
@@ -182,7 +182,7 @@ discard block |
||
| 182 | 182 | WHERE invite_created >= TIMESTAMPADD(DAY, -1, NOW()) AND used = 0 AND name = ? AND country = ? AND ( cat_institution_id IS NULL OR external_db_uniquehandle IS NULL ) ", "ss", $invitationDetails->name, $invitationDetails->country); |
| 183 | 183 | // SELECT -> resource, no boolean |
| 184 | 184 | while ($pendingDetail = mysqli_fetch_object(/** @scrutinizer ignore-type */ $otherPending)) { |
| 185 | - $this->databaseHandle->exec("UPDATE invitations SET cat_institution_id = " . $idp->identifier . " WHERE id = " . $pendingDetail->id); |
|
| 185 | + $this->databaseHandle->exec("UPDATE invitations SET cat_institution_id = ".$idp->identifier." WHERE id = ".$pendingDetail->id); |
|
| 186 | 186 | } |
| 187 | 187 | common\Entity::outOfThePotatoes(); |
| 188 | 188 | return $idp; |
@@ -276,9 +276,9 @@ discard block |
||
| 276 | 276 | $retval = []; |
| 277 | 277 | $invitations = $this->databaseHandle->exec("SELECT cat_institution_id, country, name, invite_issuer_level, invite_dest_mail, invite_token , TIMESTAMPADD(DAY, 1, invite_created) as expiry |
| 278 | 278 | FROM invitations |
| 279 | - WHERE cat_institution_id " . ( $idpIdentifier != 0 ? "= $idpIdentifier" : "IS NULL") . " AND invite_created >= TIMESTAMPADD(DAY, -1, NOW()) AND used = 0"); |
|
| 279 | + WHERE cat_institution_id " . ($idpIdentifier != 0 ? "= $idpIdentifier" : "IS NULL")." AND invite_created >= TIMESTAMPADD(DAY, -1, NOW()) AND used = 0"); |
|
| 280 | 280 | // SELECT -> resource, not boolean |
| 281 | - $this->loggerInstance->debug(4, "Retrieving pending invitations for " . ($idpIdentifier != 0 ? "IdP $idpIdentifier" : "IdPs awaiting initial creation" ) . ".\n"); |
|
| 281 | + $this->loggerInstance->debug(4, "Retrieving pending invitations for ".($idpIdentifier != 0 ? "IdP $idpIdentifier" : "IdPs awaiting initial creation").".\n"); |
|
| 282 | 282 | while ($invitationQuery = mysqli_fetch_object(/** @scrutinizer ignore-type */ $invitations)) { |
| 283 | 283 | $retval[] = ["country" => $invitationQuery->country, "name" => $invitationQuery->name, "mail" => $invitationQuery->invite_dest_mail, "token" => $invitationQuery->invite_token, "expiry" => $invitationQuery->expiry]; |
| 284 | 284 | } |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | * @author Stefan Winter <[email protected]> |
| 28 | 28 | * @package UserGUI |
| 29 | 29 | */ |
| 30 | -require dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
| 30 | +require dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
| 31 | 31 | $API = new \core\UserAPI(); |
| 32 | 32 | $loggerInstance = new \core\common\Logging(); |
| 33 | 33 | $validator = new \web\lib\common\InputValidation(); |
@@ -76,5 +76,5 @@ discard block |
||
| 76 | 76 | if ($accountPageUrl === FALSE) { |
| 77 | 77 | throw new Exception("Unable to find our accountstatus.php page."); |
| 78 | 78 | } |
| 79 | - header("Location: ../accountstatus/accountstatus.php?token=" . $cleanToken . "&errorcode=GENERATOR_CONSUMED"); |
|
| 79 | + header("Location: ../accountstatus/accountstatus.php?token=".$cleanToken."&errorcode=GENERATOR_CONSUMED"); |
|
| 80 | 80 | } |
| 81 | 81 | \ No newline at end of file |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | * |
| 25 | 25 | * @package UserAPI |
| 26 | 26 | */ |
| 27 | -include(dirname(dirname(dirname(__FILE__))) . "/config/_config.php"); |
|
| 27 | +include(dirname(dirname(dirname(__FILE__)))."/config/_config.php"); |
|
| 28 | 28 | $API = new \core\UserNetAPI(); |
| 29 | 29 | $validator = new web\lib\common\InputValidation(); |
| 30 | 30 | $loggerInstance = new \core\common\Logging(); |
@@ -26,8 +26,8 @@ discard block |
||
| 26 | 26 | */ |
| 27 | 27 | ?> |
| 28 | 28 | <?php |
| 29 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
| 30 | -require_once dirname(dirname(dirname(__FILE__))) . "/core/phpqrcode.php"; |
|
| 29 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
| 30 | +require_once dirname(dirname(dirname(__FILE__)))."/core/phpqrcode.php"; |
|
| 31 | 31 | |
| 32 | 32 | |
| 33 | 33 | $deco = new \web\lib\admin\PageDecoration(); |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | } else { |
| 41 | 41 | $link = 'http://'; |
| 42 | 42 | } |
| 43 | -$link .= $_SERVER['SERVER_NAME'] . $_SERVER['SCRIPT_NAME']; |
|
| 43 | +$link .= $_SERVER['SERVER_NAME'].$_SERVER['SCRIPT_NAME']; |
|
| 44 | 44 | $link = htmlspecialchars($link); |
| 45 | 45 | |
| 46 | 46 | const QRCODE_PIXELS_PER_SYMBOL = 12; |
@@ -76,15 +76,15 @@ discard block |
||
| 76 | 76 | <div class='infobox' style='text-align:center;'> |
| 77 | 77 | <h2><?php echo sprintf(_("%s download area QR code"), $uiElements->nomenclatureInst); ?></h2> |
| 78 | 78 | <?php |
| 79 | - $idpLevelUrl = ( isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on" ? 'https://' : 'http://') . $_SERVER['SERVER_NAME'] . dirname(dirname($_SERVER['SCRIPT_NAME'])) . "?idp=" . $my_inst->identifier; |
|
| 79 | + $idpLevelUrl = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on" ? 'https://' : 'http://').$_SERVER['SERVER_NAME'].dirname(dirname($_SERVER['SCRIPT_NAME']))."?idp=".$my_inst->identifier; |
|
| 80 | 80 | // never NULL, because $filename is FALSE; but make Scrutinizer happy |
| 81 | 81 | $rawQr = QRcode::png($idpLevelUrl, FALSE, QR_ECLEVEL_Q, QRCODE_PIXELS_PER_SYMBOL); |
| 82 | 82 | if ($rawQr === NULL) { |
| 83 | 83 | throw new Exception("Something went seriously wrong during QR code generation!"); |
| 84 | 84 | } |
| 85 | - $uri = "data:image/png;base64," . base64_encode($uiElements->pngInjectConsortiumLogo($rawQr, QRCODE_PIXELS_PER_SYMBOL)); |
|
| 85 | + $uri = "data:image/png;base64,".base64_encode($uiElements->pngInjectConsortiumLogo($rawQr, QRCODE_PIXELS_PER_SYMBOL)); |
|
| 86 | 86 | $size = getimagesize($uri); |
| 87 | - echo "<img width='" . ($size[0] / 4) . "' height='" . ($size[1] / 4) . "' src='$uri' alt='QR-code'/>"; |
|
| 87 | + echo "<img width='".($size[0] / 4)."' height='".($size[1] / 4)."' src='$uri' alt='QR-code'/>"; |
|
| 88 | 88 | ?> |
| 89 | 89 | <br> |
| 90 | 90 | <?php echo "<a href='$idpLevelUrl'>$idpLevelUrl</a>"; ?> |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | </td> |
| 114 | 114 | <td> |
| 115 | 115 | <form action='edit_idp_result.php?inst_id=<?php echo $my_inst->identifier; ?>' method='post' accept-charset='UTF-8'> |
| 116 | - <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->nomenclatureInst, $my_inst->name); ?>')"><?php echo sprintf(_("Delete %s"), $uiElements->nomenclatureInst); ?></button> |
|
| 116 | + <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->nomenclatureInst, $my_inst->name); ?>')"><?php echo sprintf(_("Delete %s"), $uiElements->nomenclatureInst); ?></button> |
|
| 117 | 117 | </form> |
| 118 | 118 | |
| 119 | 119 | </td> |
@@ -134,21 +134,21 @@ discard block |
||
| 134 | 134 | <?php |
| 135 | 135 | if (CONFIG['FUNCTIONALITY_LOCATIONS']['DIAGNOSTICS'] !== NULL) { |
| 136 | 136 | echo "<tr> |
| 137 | - <td>" . _("Check another realm's reachability") . "</td> |
|
| 137 | + <td>" . _("Check another realm's reachability")."</td> |
|
| 138 | 138 | <td><form method='post' action='../diag/action_realmcheck.php?inst_id=$my_inst->identifier' accept-charset='UTF-8'> |
| 139 | 139 | <input type='text' name='realm' id='realm'> |
| 140 | 140 | <input type='hidden' name='comefrom' id='comefrom' value='$link'/> |
| 141 | - <button type='submit'>" . _("Go!") . "</button> |
|
| 141 | + <button type='submit'>"._("Go!")."</button> |
|
| 142 | 142 | </form> |
| 143 | 143 | </td> |
| 144 | 144 | </tr>"; |
| 145 | 145 | } |
| 146 | 146 | if (CONFIG_CONFASSISTANT['CONSORTIUM']['name'] == "eduroam") { // SW: APPROVED |
| 147 | 147 | echo "<tr> |
| 148 | - <td>" . sprintf(_("Check %s server status"), $uiElements->nomenclatureFed) . "</td> |
|
| 148 | + <td>" . sprintf(_("Check %s server status"), $uiElements->nomenclatureFed)."</td> |
|
| 149 | 149 | <td> |
| 150 | 150 | <form action='https://monitor.eduroam.org/mon_direct.php' accept-charset='UTF-8'> |
| 151 | - <button type='submit'>" . _("Go!") . "</button> |
|
| 151 | + <button type='submit'>" . _("Go!")."</button> |
|
| 152 | 152 | </form> |
| 153 | 153 | </td> |
| 154 | 154 | </tr>"; |
@@ -159,10 +159,10 @@ discard block |
||
| 159 | 159 | <?php |
| 160 | 160 | $profiles_for_this_idp = $my_inst->listProfiles(); |
| 161 | 161 | if (count($profiles_for_this_idp) == 0) { // no profiles yet. |
| 162 | - echo "<h2>" . sprintf(_("There are not yet any profiles for your %s."), $uiElements->nomenclatureInst) . "</h2>"; |
|
| 162 | + echo "<h2>".sprintf(_("There are not yet any profiles for your %s."), $uiElements->nomenclatureInst)."</h2>"; |
|
| 163 | 163 | } |
| 164 | 164 | if (count($profiles_for_this_idp) > 0) { // no profiles yet. |
| 165 | - echo "<h2>" . sprintf(_("Profiles for this %s"), $uiElements->nomenclatureInst) . "</h2>"; |
|
| 165 | + echo "<h2>".sprintf(_("Profiles for this %s"), $uiElements->nomenclatureInst)."</h2>"; |
|
| 166 | 166 | } |
| 167 | 167 | // if there is one profile and it is of type Silver Bullet, display a very |
| 168 | 168 | // simple widget with just a "Manage" button |
@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | echo _("Information needed!"); |
| 189 | 189 | echo "<ul style='margin:1px'>"; |
| 190 | 190 | foreach ($completeness as $missing_attrib) { |
| 191 | - echo "<li>" . $uiElements->displayName($missing_attrib) . "</li>"; |
|
| 191 | + echo "<li>".$uiElements->displayName($missing_attrib)."</li>"; |
|
| 192 | 192 | } |
| 193 | 193 | echo "</ul>"; |
| 194 | 194 | echo "</div>"; |
@@ -202,7 +202,7 @@ discard block |
||
| 202 | 202 | if ($readonly === FALSE) { |
| 203 | 203 | ?> |
| 204 | 204 | <form action='edit_silverbullet.php?inst_id=<?php echo $my_inst->identifier; ?>&profile_id=<?php echo $profile_list->identifier; ?>' method='POST'> |
| 205 | - <button <?php echo ( is_array($completeness) ? "disabled" : "" ); ?> type='submit' name='sb_action' value='sb_edit'><?php echo _("Manage User Base"); ?></button> |
|
| 205 | + <button <?php echo (is_array($completeness) ? "disabled" : ""); ?> type='submit' name='sb_action' value='sb_edit'><?php echo _("Manage User Base"); ?></button> |
|
| 206 | 206 | </form> |
| 207 | 207 | <?php |
| 208 | 208 | } |
@@ -234,21 +234,21 @@ discard block |
||
| 234 | 234 | $has_overrides = TRUE; |
| 235 | 235 | } |
| 236 | 236 | } |
| 237 | - $buffer_eaptypediv = "<div style='margin-bottom:40px; float:left;'>" . _("<strong>EAP Types</strong> (in order of preference):") . "<br/>"; |
|
| 237 | + $buffer_eaptypediv = "<div style='margin-bottom:40px; float:left;'>"._("<strong>EAP Types</strong> (in order of preference):")."<br/>"; |
|
| 238 | 238 | $typelist = $profile_list->getEapMethodsinOrderOfPreference(); |
| 239 | 239 | $allcomplete = TRUE; |
| 240 | 240 | foreach ($typelist as $eaptype) { |
| 241 | 241 | $buffer_eaptypediv .= $eaptype->getPrintableRep(); |
| 242 | 242 | $completeness = $profile_list->isEapTypeDefinitionComplete($eaptype); |
| 243 | 243 | if ($completeness === true) { |
| 244 | - $buffer_eaptypediv .= " <div class='acceptable'>" . _("OK") . "</div>"; |
|
| 244 | + $buffer_eaptypediv .= " <div class='acceptable'>"._("OK")."</div>"; |
|
| 245 | 245 | } else { |
| 246 | 246 | $buffer_eaptypediv .= " <div class='notacceptable'>"; |
| 247 | 247 | $buffer_eaptypediv .= _("Information needed!"); |
| 248 | 248 | if (is_array($completeness)) { |
| 249 | 249 | $buffer_eaptypediv .= "<ul style='margin:1px'>"; |
| 250 | 250 | foreach ($completeness as $missing_attrib) { |
| 251 | - $buffer_eaptypediv .= "<li>" . $uiElements->displayName($missing_attrib) . "</li>"; |
|
| 251 | + $buffer_eaptypediv .= "<li>".$uiElements->displayName($missing_attrib)."</li>"; |
|
| 252 | 252 | } |
| 253 | 253 | $buffer_eaptypediv .= "</ul>"; |
| 254 | 254 | } |
@@ -260,12 +260,12 @@ discard block |
||
| 260 | 260 | foreach ($attribs as $attrib) { |
| 261 | 261 | if ($attrib['level'] == "Method" && !preg_match("/^internal:/", $attrib['name']) && !$justOnce) { |
| 262 | 262 | $justOnce = TRUE; |
| 263 | - $buffer_eaptypediv .= "<img src='../resources/images/icons/Letter-E-blue-icon.png' alt='" . _("Options on EAP Method/Device level are in effect.") . "'>"; |
|
| 263 | + $buffer_eaptypediv .= "<img src='../resources/images/icons/Letter-E-blue-icon.png' alt='"._("Options on EAP Method/Device level are in effect.")."'>"; |
|
| 264 | 264 | } |
| 265 | 265 | } |
| 266 | 266 | $buffer_eaptypediv .= "<br/>"; |
| 267 | 267 | } |
| 268 | - $buffer_headline = "<div style='padding-bottom:20px;'><h2 style='overflow:auto; display:inline; padding-bottom: 10px;'>" . sprintf(_("Profile: %s"), $profile_name) . "</h2>"; |
|
| 268 | + $buffer_headline = "<div style='padding-bottom:20px;'><h2 style='overflow:auto; display:inline; padding-bottom: 10px;'>".sprintf(_("Profile: %s"), $profile_name)."</h2>"; |
|
| 269 | 269 | |
| 270 | 270 | $buffer_headline .= "<span style='float:right;'>"; |
| 271 | 271 | $readiness = $profile_list->readinessLevel(); |
@@ -297,18 +297,18 @@ discard block |
||
| 297 | 297 | if (CONFIG['FUNCTIONALITY_LOCATIONS']['DIAGNOSTICS'] == "LOCAL") { |
| 298 | 298 | $diagUrl = "../diag/"; |
| 299 | 299 | } else { |
| 300 | - $diagUrl = CONFIG['FUNCTIONALITY_LOCATIONS']['DIAGNOSTICS'] . "/diag/"; |
|
| 300 | + $diagUrl = CONFIG['FUNCTIONALITY_LOCATIONS']['DIAGNOSTICS']."/diag/"; |
|
| 301 | 301 | } |
| 302 | - echo "<form action='" . $diagUrl . "action_realmcheck.php?inst_id=$my_inst->identifier&profile_id=$profile_list->identifier' method='post' accept-charset='UTF-8'> |
|
| 302 | + echo "<form action='".$diagUrl."action_realmcheck.php?inst_id=$my_inst->identifier&profile_id=$profile_list->identifier' method='post' accept-charset='UTF-8'> |
|
| 303 | 303 | <input type='hidden' name='comefrom' id='comefrom-$profilecount' value='$link'/> |
| 304 | - <button type='submit' name='profile_action' value='check' " . ($has_realm ? "" : "disabled='disabled' title='" . _("The realm can only be checked if you configure the realm!") . "'") . "> |
|
| 305 | - " . _("Check realm reachability") . " |
|
| 304 | + <button type='submit' name='profile_action' value='check' ".($has_realm ? "" : "disabled='disabled' title='"._("The realm can only be checked if you configure the realm!")."'")."> |
|
| 305 | + " . _("Check realm reachability")." |
|
| 306 | 306 | </button> |
| 307 | 307 | </form>"; |
| 308 | 308 | } |
| 309 | 309 | echo "<form action='overview_installers.php?inst_id=$my_inst->identifier&profile_id=$profile_list->identifier' method='post' accept-charset='UTF-8'> |
| 310 | - <button type='submit' name='profile_action' value='check' " . ($has_eaptypes ? "" : "disabled='disabled' title='" . _("You have not fully configured any supported EAP types!") . "'") . "> |
|
| 311 | - " . _("Installer Fine-Tuning and Download") . " |
|
| 310 | + <button type='submit' name='profile_action' value='check' ".($has_eaptypes ? "" : "disabled='disabled' title='"._("You have not fully configured any supported EAP types!")."'")."> |
|
| 311 | + " . _("Installer Fine-Tuning and Download")." |
|
| 312 | 312 | </button> |
| 313 | 313 | </form> |
| 314 | 314 | </div>"; |
@@ -317,11 +317,11 @@ discard block |
||
| 317 | 317 | echo " <div class='buttongroupprofilebox' style='clear:both;'> |
| 318 | 318 | <form action='edit_profile.php?inst_id=$my_inst->identifier&profile_id=$profile_list->identifier' method='post' accept-charset='UTF-8'> |
| 319 | 319 | <hr/> |
| 320 | - <button type='submit' name='profile_action' value='edit'>" . _("Edit") . "</button> |
|
| 320 | + <button type='submit' name='profile_action' value='edit'>"._("Edit")."</button> |
|
| 321 | 321 | </form> |
| 322 | 322 | <form action='edit_profile_result.php?inst_id=$my_inst->identifier&profile_id=$profile_list->identifier' method='post' accept-charset='UTF-8'> |
| 323 | - <button class='delete' type='submit' name='submitbutton' value='" . web\lib\common\FormElements::BUTTON_DELETE . "' onclick=\"return confirm('" . sprintf(_("Do you really want to delete the profile %s?"), $profile_name) . "')\"> |
|
| 324 | - " . _("Delete") . " |
|
| 323 | + <button class='delete' type='submit' name='submitbutton' value='".web\lib\common\FormElements::BUTTON_DELETE."' onclick=\"return confirm('".sprintf(_("Do you really want to delete the profile %s?"), $profile_name)."')\"> |
|
| 324 | + " . _("Delete")." |
|
| 325 | 325 | </button> |
| 326 | 326 | </form> |
| 327 | 327 | </div>"; |
@@ -330,24 +330,24 @@ discard block |
||
| 330 | 330 | // dummy width to keep a little distance |
| 331 | 331 | echo "<div style='width:20px;'></div>"; |
| 332 | 332 | if ($readiness == core\AbstractProfile::READINESS_LEVEL_SHOWTIME) { |
| 333 | - echo "<div style='display: table-cell; text-align:center;'><p><strong>" . _("User Download Link") . "</strong></p>"; |
|
| 334 | - $displayurl = $idpLevelUrl . "&profile=" . $profile_list->identifier; |
|
| 335 | - $QRurl = $idpLevelUrl . "&profile=" . $profile_list->identifier; |
|
| 333 | + echo "<div style='display: table-cell; text-align:center;'><p><strong>"._("User Download Link")."</strong></p>"; |
|
| 334 | + $displayurl = $idpLevelUrl."&profile=".$profile_list->identifier; |
|
| 335 | + $QRurl = $idpLevelUrl."&profile=".$profile_list->identifier; |
|
| 336 | 336 | echo "<a href='$displayurl' style='white-space: nowrap; text-align: center;'>"; |
| 337 | 337 | $rawQr = QRcode::png($QRurl, FALSE, QR_ECLEVEL_Q, QRCODE_PIXELS_PER_SYMBOL); |
| 338 | 338 | if ($rawQr === NULL) { |
| 339 | 339 | throw new Exception("Something went seriously wrong during QR code generation!"); |
| 340 | 340 | } |
| 341 | - $uri = "data:image/png;base64," . base64_encode($uiElements->pngInjectConsortiumLogo($rawQr, QRCODE_PIXELS_PER_SYMBOL)); |
|
| 341 | + $uri = "data:image/png;base64,".base64_encode($uiElements->pngInjectConsortiumLogo($rawQr, QRCODE_PIXELS_PER_SYMBOL)); |
|
| 342 | 342 | $size = getimagesize($uri); |
| 343 | - echo "<img width='" . ($size[0] / 4) . "' height='" . ($size[1] / 4) . "' src='$uri' alt='QR-code'/>"; |
|
| 343 | + echo "<img width='".($size[0] / 4)."' height='".($size[1] / 4)."' src='$uri' alt='QR-code'/>"; |
|
| 344 | 344 | |
| 345 | 345 | //echo "<nobr>$displayurl</nobr></a>"; |
| 346 | 346 | echo "<p>$displayurl</p></a>"; |
| 347 | 347 | echo "</div>"; |
| 348 | 348 | // dummy width to keep a little distance |
| 349 | 349 | echo "<div style='width:20px;'></div>"; |
| 350 | - echo "<div style='display: table-cell; min-width:200px;'><p><strong>" . _("User Downloads") . "</strong></p><table>"; |
|
| 350 | + echo "<div style='display: table-cell; min-width:200px;'><p><strong>"._("User Downloads")."</strong></p><table>"; |
|
| 351 | 351 | $stats = $profile_list->getUserDownloadStats(); |
| 352 | 352 | foreach ($stats as $dev => $count) { |
| 353 | 353 | echo "<tr><td><strong>$dev</strong></td><td>$count</td></tr>"; |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | * <base_url>/copyright.php after deploying the software |
| 20 | 20 | */ |
| 21 | 21 | |
| 22 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
| 22 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
| 23 | 23 | |
| 24 | 24 | $Tests = [ |
| 25 | 25 | 'cat_base_url', |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | 'mailer', |
| 38 | 38 | ]; |
| 39 | 39 | |
| 40 | -if (CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_SILVERBULLET'] == "LOCAL" || CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_RADIUS'] == "LOCAL" ) { |
|
| 40 | +if (CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_SILVERBULLET'] == "LOCAL" || CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_RADIUS'] == "LOCAL") { |
|
| 41 | 41 | $Tests[] = 'makensis'; |
| 42 | 42 | $Tests[] = 'makensis=>NSISmodules'; |
| 43 | 43 | } |
@@ -71,10 +71,10 @@ discard block |
||
| 71 | 71 | $message = "Your configuration appears to be fine."; |
| 72 | 72 | break; |
| 73 | 73 | default: |
| 74 | - throw new Exception("The result code level " . $test->test_result['global'] . " is not defined!"); |
|
| 74 | + throw new Exception("The result code level ".$test->test_result['global']." is not defined!"); |
|
| 75 | 75 | } |
| 76 | 76 | $uiElements = new web\lib\admin\UIElements(); |
| 77 | - $out .= $uiElements->boxFlexible($test->test_result['global'], "<br><strong>Test Summary</strong><br>" . $message . "<br>See below for details<br><hr>"); |
|
| 77 | + $out .= $uiElements->boxFlexible($test->test_result['global'], "<br><strong>Test Summary</strong><br>".$message."<br>See below for details<br><hr>"); |
|
| 78 | 78 | foreach ($test->out as $testValue) { |
| 79 | 79 | foreach ($testValue as $o) { |
| 80 | 80 | $out .= $uiElements->boxFlexible($o['level'], $o['message']); |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | |
| 25 | 25 | use Exception; |
| 26 | 26 | |
| 27 | -require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/config/_config.php"; |
|
| 27 | +require_once dirname(dirname(dirname(dirname(__FILE__))))."/config/_config.php"; |
|
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | 30 | * We need to display previously set options in various forms. This class covers |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | * @return string HTML code <table> |
| 88 | 88 | */ |
| 89 | 89 | public function prefilledOptionTable(string $attributePrefix) { |
| 90 | - $retval = "<table id='expandable_$attributePrefix" . "_options'>"; |
|
| 90 | + $retval = "<table id='expandable_$attributePrefix"."_options'>"; |
|
| 91 | 91 | |
| 92 | 92 | $prepopulate = []; |
| 93 | 93 | foreach ($this->listOfOptions as $existingAttribute) { |
@@ -119,13 +119,13 @@ discard block |
||
| 119 | 119 | if (CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_SILVERBULLET'] == "LOCAL" && CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_RADIUS'] != "LOCAL") { |
| 120 | 120 | $blackListOnPrefill .= "|fed:silverbullet"; |
| 121 | 121 | } |
| 122 | - if (is_array($prepopulate) && ( count($prepopulate) > 1 || $class == "device-specific" || $class == "eap-specific")) { // editing... fill with values |
|
| 122 | + if (is_array($prepopulate) && (count($prepopulate) > 1 || $class == "device-specific" || $class == "eap-specific")) { // editing... fill with values |
|
| 123 | 123 | foreach ($prepopulate as $option) { |
| 124 | 124 | if (preg_match("/$class:/", $option['name']) && !preg_match("/($blackListOnPrefill)/", $option['name'])) { |
| 125 | 125 | $optiontypearray = $optioninfo->optionType($option['name']); |
| 126 | 126 | $loggerInstance = new \core\common\Logging(); |
| 127 | 127 | $loggerInstance->debug(5, "About to execute optiontext with PREFILL!\n"); |
| 128 | - $retval .= $this->optiontext([$option['name']], ($optiontypearray["type"] == "file" ? 'ROWID-' . $option['level'] . '-' . $option['row'] : $option['value']), $option['lang']); |
|
| 128 | + $retval .= $this->optiontext([$option['name']], ($optiontypearray["type"] == "file" ? 'ROWID-'.$option['level'].'-'.$option['row'] : $option['value']), $option['lang']); |
|
| 129 | 129 | } |
| 130 | 130 | } |
| 131 | 131 | } else { // not editing exist, this in new: add empty list |
@@ -187,7 +187,7 @@ discard block |
||
| 187 | 187 | if (!isset($descriptions[$input])) { |
| 188 | 188 | return ""; |
| 189 | 189 | } |
| 190 | - return "<span class='tooltip' id='S$rowid-tooltip-$input' style='display:" . ($isVisible ? "block" : "none") . "' onclick='alert(\"" . $descriptions[$input] . "\")'><img src='../resources/images/icons/question-mark-icon.png" . "'></span>"; |
|
| 190 | + return "<span class='tooltip' id='S$rowid-tooltip-$input' style='display:".($isVisible ? "block" : "none")."' onclick='alert(\"".$descriptions[$input]."\")'><img src='../resources/images/icons/question-mark-icon.png"."'></span>"; |
|
| 191 | 191 | } |
| 192 | 192 | |
| 193 | 193 | /** |
@@ -200,18 +200,18 @@ discard block |
||
| 200 | 200 | */ |
| 201 | 201 | private function selectElement($rowid, $list) { |
| 202 | 202 | $jsmagic = "onchange=' |
| 203 | - if (/#ML#/.test(document.getElementById(\"option-S" . $rowid . "-select\").value)) { |
|
| 203 | + if (/#ML#/.test(document.getElementById(\"option-S" . $rowid."-select\").value)) { |
|
| 204 | 204 | document.getElementById(\"S$rowid-input-langselect\").style.display = \"block\"; |
| 205 | 205 | } else { |
| 206 | 206 | document.getElementById(\"S$rowid-input-langselect\").style.display = \"none\"; |
| 207 | 207 | }"; |
| 208 | 208 | foreach (array_keys(OptionDisplay::HTML_DATATYPE_TEXTS) as $key) { |
| 209 | - $jsmagic .= "if (/#" . $key . "#/.test(document.getElementById(\"option-S" . $rowid . "-select\").value)) { |
|
| 210 | - document.getElementById(\"S$rowid-input-file\").style.display = \"" . ($key == \core\Options::TYPECODE_FILE ? "block" : "none") . "\"; |
|
| 211 | - document.getElementById(\"S$rowid-input-text\").style.display = \"" . ($key == \core\Options::TYPECODE_TEXT ? "block" : "none") . "\"; |
|
| 212 | - document.getElementById(\"S$rowid-input-string\").style.display = \"" . ($key == \core\Options::TYPECODE_STRING ? "block" : "none") . "\"; |
|
| 213 | - document.getElementById(\"S$rowid-input-boolean\").style.display = \"" . ($key == \core\Options::TYPECODE_BOOLEAN ? "block" : "none") . "\"; |
|
| 214 | - document.getElementById(\"S$rowid-input-integer\").style.display = \"" . ($key == \core\Options::TYPECODE_INTEGER ? "block" : "none") . "\"; |
|
| 209 | + $jsmagic .= "if (/#".$key."#/.test(document.getElementById(\"option-S".$rowid."-select\").value)) { |
|
| 210 | + document.getElementById(\"S$rowid-input-file\").style.display = \"".($key == \core\Options::TYPECODE_FILE ? "block" : "none")."\"; |
|
| 211 | + document.getElementById(\"S$rowid-input-text\").style.display = \"".($key == \core\Options::TYPECODE_TEXT ? "block" : "none")."\"; |
|
| 212 | + document.getElementById(\"S$rowid-input-string\").style.display = \"".($key == \core\Options::TYPECODE_STRING ? "block" : "none")."\"; |
|
| 213 | + document.getElementById(\"S$rowid-input-boolean\").style.display = \"".($key == \core\Options::TYPECODE_BOOLEAN ? "block" : "none")."\"; |
|
| 214 | + document.getElementById(\"S$rowid-input-integer\").style.display = \"".($key == \core\Options::TYPECODE_INTEGER ? "block" : "none")."\"; |
|
| 215 | 215 | } |
| 216 | 216 | "; |
| 217 | 217 | // hide all tooltips (each is a <span>, and there are no other <span>s) |
@@ -240,7 +240,7 @@ discard block |
||
| 240 | 240 | $activelisttype = []; |
| 241 | 241 | foreach ($list as $value) { |
| 242 | 242 | $listtype = $optioninfo->optionType($value); |
| 243 | - $retval .= "<option id='option-S$rowid-v-$value' value='$value#" . $listtype["type"] . "#" . $listtype["flag"] . "#' "; |
|
| 243 | + $retval .= "<option id='option-S$rowid-v-$value' value='$value#".$listtype["type"]."#".$listtype["flag"]."#' "; |
|
| 244 | 244 | if ($iterator == $this->optionIterator) { |
| 245 | 245 | $retval .= "selected='selected'"; |
| 246 | 246 | $activelisttype = $listtype; |
@@ -248,7 +248,7 @@ discard block |
||
| 248 | 248 | } else { |
| 249 | 249 | $tooltips .= $this->tooltip($rowid, $value, FALSE); |
| 250 | 250 | } |
| 251 | - $retval .= ">" . $uiElements->displayName($value) . "</option>"; |
|
| 251 | + $retval .= ">".$uiElements->displayName($value)."</option>"; |
|
| 252 | 252 | $iterator++; |
| 253 | 253 | } |
| 254 | 254 | if (count($activelisttype) == 0) { |
@@ -271,9 +271,9 @@ discard block |
||
| 271 | 271 | */ |
| 272 | 272 | private function selectLanguage($rowid, $makeVisible) { |
| 273 | 273 | \core\common\Entity::intoThePotatoes(); |
| 274 | - $retval = "<select style='display:" . ($makeVisible ? "block" : "none") . "' name='value[S$rowid-lang]' id='S" . $rowid . "-input-langselect'> |
|
| 275 | - <option value='' name='select_language' selected>" . _("select language") . "</option> |
|
| 276 | - <option value='C' name='all_languages'>" . _("default/other languages") . "</option>"; |
|
| 274 | + $retval = "<select style='display:".($makeVisible ? "block" : "none")."' name='value[S$rowid-lang]' id='S".$rowid."-input-langselect'> |
|
| 275 | + <option value='' name='select_language' selected>" . _("select language")."</option> |
|
| 276 | + <option value='C' name='all_languages'>" . _("default/other languages")."</option>"; |
|
| 277 | 277 | foreach (CONFIG['LANGUAGES'] as $langindex => $possibleLang) { |
| 278 | 278 | $thislang = $possibleLang['display']; |
| 279 | 279 | $retval .= "<option value='$langindex' name='$langindex'>$thislang</option>"; |
@@ -301,7 +301,7 @@ discard block |
||
| 301 | 301 | private function inputFields($rowid, $activetype) { |
| 302 | 302 | $retval = ""; |
| 303 | 303 | foreach (OptionDisplay::HTML_DATATYPE_TEXTS as $key => $type) { |
| 304 | - $retval .= "<" . $type['html'] . " style='display:" . ($activetype['type'] == $key ? "block" : "none") . "' name='value[S$rowid-$key]' id='S" . $rowid . "-input-" . $key . "'" . $type['tail'] . ">"; |
|
| 304 | + $retval .= "<".$type['html']." style='display:".($activetype['type'] == $key ? "block" : "none")."' name='value[S$rowid-$key]' id='S".$rowid."-input-".$key."'".$type['tail'].">"; |
|
| 305 | 305 | } |
| 306 | 306 | return $retval; |
| 307 | 307 | } |
@@ -316,11 +316,11 @@ discard block |
||
| 316 | 316 | private function noPrefillText(int $rowid, array $list) { |
| 317 | 317 | // first column: the <select> element with the names of options and their field-toggling JS magic |
| 318 | 318 | $selectorInfo = $this->selectElement($rowid, $list); |
| 319 | - $retval = "<td>" . $selectorInfo["TEXT"] . "</td>"; |
|
| 319 | + $retval = "<td>".$selectorInfo["TEXT"]."</td>"; |
|
| 320 | 320 | // second column: the <select> element for language selection - only visible if the active option is multi-lang |
| 321 | - $retval .= "<td>" . $this->selectLanguage($rowid, $selectorInfo['ACTIVE']['flag'] == "ML") . "</td>"; |
|
| 321 | + $retval .= "<td>".$this->selectLanguage($rowid, $selectorInfo['ACTIVE']['flag'] == "ML")."</td>"; |
|
| 322 | 322 | // third column: the actual input fields; the data type of the active option is visible, all others hidden |
| 323 | - $retval .= "<td>" . $this->inputFields($rowid, $selectorInfo['ACTIVE']) . "</td>"; |
|
| 323 | + $retval .= "<td>".$this->inputFields($rowid, $selectorInfo['ACTIVE'])."</td>"; |
|
| 324 | 324 | return $retval; |
| 325 | 325 | } |
| 326 | 326 | |
@@ -343,20 +343,20 @@ discard block |
||
| 343 | 343 | $retval .= "<td>"; |
| 344 | 344 | $uiElements = new UIElements(); |
| 345 | 345 | $listtype = $optioninfo->optionType($optionName); |
| 346 | - $retval .= "<span style='display:flex;'>" . $uiElements->displayName($optionName); |
|
| 347 | - $retval .= $this->tooltip($rowid, $optionName, TRUE) . "</span>"; |
|
| 348 | - $retval .= "<input type='hidden' id='option-S$rowid-select' name='option[S$rowid]' value='$optionName#" . $listtype["type"] . "#" . $listtype["flag"] . "#' ></td>"; |
|
| 346 | + $retval .= "<span style='display:flex;'>".$uiElements->displayName($optionName); |
|
| 347 | + $retval .= $this->tooltip($rowid, $optionName, TRUE)."</span>"; |
|
| 348 | + $retval .= "<input type='hidden' id='option-S$rowid-select' name='option[S$rowid]' value='$optionName#".$listtype["type"]."#".$listtype["flag"]."#' ></td>"; |
|
| 349 | 349 | |
| 350 | 350 | // language tag if any |
| 351 | 351 | $retval .= "<td>"; |
| 352 | 352 | if ($listtype["flag"] == "ML") { |
| 353 | 353 | |
| 354 | - $language = "(" . strtoupper($optionLang) . ")"; |
|
| 354 | + $language = "(".strtoupper($optionLang).")"; |
|
| 355 | 355 | if ($optionLang == 'C') { |
| 356 | 356 | $language = _("(default/other languages)"); |
| 357 | 357 | } |
| 358 | 358 | $retval .= $language; |
| 359 | - $retval .= "<input type='hidden' name='value[S$rowid-lang]' id='S" . $rowid . "-input-langselect' value='" . $optionLang . "' style='display:block'>"; |
|
| 359 | + $retval .= "<input type='hidden' name='value[S$rowid-lang]' id='S".$rowid."-input-langselect' value='".$optionLang."' style='display:block'>"; |
|
| 360 | 360 | } |
| 361 | 361 | $retval .= "</td>"; |
| 362 | 362 | // attribute content |
@@ -366,12 +366,12 @@ discard block |
||
| 366 | 366 | case \core\Options::TYPECODE_COORDINATES: |
| 367 | 367 | $this->allLocationCount = $this->allLocationCount + 1; |
| 368 | 368 | // display of the locations varies by map provider |
| 369 | - $classname = "\web\lib\admin\Map" . CONFIG_CONFASSISTANT['MAPPROVIDER']['PROVIDER']; |
|
| 369 | + $classname = "\web\lib\admin\Map".CONFIG_CONFASSISTANT['MAPPROVIDER']['PROVIDER']; |
|
| 370 | 370 | $link = $classname::optionListDisplayCode($optionValue, $this->allLocationCount); |
| 371 | - $retval .= "<input readonly style='display:none' type='text' name='value[S$rowid-" . \core\Options::TYPECODE_TEXT . "]' id='S$rowid-input-text' value='$optionValue'>$link"; |
|
| 371 | + $retval .= "<input readonly style='display:none' type='text' name='value[S$rowid-".\core\Options::TYPECODE_TEXT."]' id='S$rowid-input-text' value='$optionValue'>$link"; |
|
| 372 | 372 | break; |
| 373 | 373 | case \core\Options::TYPECODE_FILE: |
| 374 | - $retval .= "<input readonly type='text' name='value[S$rowid-" . \core\Options::TYPECODE_STRING . "]' id='S" . $rowid . "-input-string' style='display:none' value='" . urlencode($optionValue) . "'>"; |
|
| 374 | + $retval .= "<input readonly type='text' name='value[S$rowid-".\core\Options::TYPECODE_STRING."]' id='S".$rowid."-input-string' style='display:none' value='".urlencode($optionValue)."'>"; |
|
| 375 | 375 | $uiElements = new UIElements(); |
| 376 | 376 | switch ($optionName) { |
| 377 | 377 | case "eap:ca_file": |
@@ -401,7 +401,7 @@ discard block |
||
| 401 | 401 | if ($listtype['type'] == \core\Options::TYPECODE_BOOLEAN) {// only modify in this one case |
| 402 | 402 | $displayedVariant = ($optionValue == "on" ? _("on") : _("off")); |
| 403 | 403 | } |
| 404 | - $retval .= "<strong>$displayedVariant</strong><input type='hidden' name='value[S$rowid-" . $listtype['type'] . "]' id='S" . $rowid . "-input-" . $listtype["type"] . "' value=\"" . htmlspecialchars($optionValue) . "\" style='display:block'>"; |
|
| 404 | + $retval .= "<strong>$displayedVariant</strong><input type='hidden' name='value[S$rowid-".$listtype['type']."]' id='S".$rowid."-input-".$listtype["type"]."' value=\"".htmlspecialchars($optionValue)."\" style='display:block'>"; |
|
| 405 | 405 | break; |
| 406 | 406 | default: |
| 407 | 407 | // this should never happen! |
@@ -445,10 +445,10 @@ discard block |
||
| 445 | 445 | <td> |
| 446 | 446 | <button type='button' class='delete' onclick='"; |
| 447 | 447 | if ($prefillValue !== NULL && $item == "general:geo_coordinates") { |
| 448 | - $funcname = "Map" . CONFIG_CONFASSISTANT['MAPPROVIDER']['PROVIDER'] . 'DeleteCoord'; |
|
| 449 | - $retval .= 'if (typeof ' . $funcname . ' === "function") { ' . $funcname . '(' . $this->allLocationCount . '); } '; |
|
| 448 | + $funcname = "Map".CONFIG_CONFASSISTANT['MAPPROVIDER']['PROVIDER'].'DeleteCoord'; |
|
| 449 | + $retval .= 'if (typeof '.$funcname.' === "function") { '.$funcname.'('.$this->allLocationCount.'); } '; |
|
| 450 | 450 | } |
| 451 | - $retval .= 'deleteOption("option-S' . $rowid . '")'; |
|
| 451 | + $retval .= 'deleteOption("option-S'.$rowid.'")'; |
|
| 452 | 452 | $retval .= "'>-</button> |
| 453 | 453 | </td> |
| 454 | 454 | </tr>"; |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | * <base_url>/copyright.php after deploying the software |
| 21 | 21 | */ |
| 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 | /** |
| 26 | 26 | * Checks if the profile is a valid SB profile belonging to the federation |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | $inputRaw = file_get_contents('php://input'); |
| 70 | 70 | $inputDecoded = json_decode($inputRaw, TRUE); |
| 71 | 71 | if (!is_array($inputDecoded)) { |
| 72 | - $adminApi->returnError(web\lib\admin\API::ERROR_MALFORMED_REQUEST, "Unable to decode JSON POST data." . json_last_error_msg() . $inputRaw); |
|
| 72 | + $adminApi->returnError(web\lib\admin\API::ERROR_MALFORMED_REQUEST, "Unable to decode JSON POST data.".json_last_error_msg().$inputRaw); |
|
| 73 | 73 | exit(1); |
| 74 | 74 | } |
| 75 | 75 | |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | throw new Exception("A required parameter is missing, and this wasn't caught earlier?!"); |
| 159 | 159 | } |
| 160 | 160 | $newtokens = $mgmt->createTokens(true, [$admin], $idp); |
| 161 | - $URL = "https://" . $_SERVER['SERVER_NAME'] . dirname($_SERVER['SCRIPT_NAME']) . "/action_enrollment.php?token=" . array_keys($newtokens)[0]; |
|
| 161 | + $URL = "https://".$_SERVER['SERVER_NAME'].dirname($_SERVER['SCRIPT_NAME'])."/action_enrollment.php?token=".array_keys($newtokens)[0]; |
|
| 162 | 162 | $success = ["TOKEN URL" => $URL, "TOKEN" => array_keys($newtokens)[0]]; |
| 163 | 163 | // done with the essentials - display in response. But if we also have an email address, send it there |
| 164 | 164 | $email = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_TARGETMAIL); |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | if ($found) { |
| 196 | 196 | $adminApi->returnSuccess([]); |
| 197 | 197 | } |
| 198 | - $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "The admin with ID $toBeDeleted is not associated to IdP " . $idp->identifier); |
|
| 198 | + $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "The admin with ID $toBeDeleted is not associated to IdP ".$idp->identifier); |
|
| 199 | 199 | break; |
| 200 | 200 | case web\lib\admin\API::ACTION_STATISTICS_FED: |
| 201 | 201 | $adminApi->returnSuccess($fed->downloadStats("array")); |
@@ -242,10 +242,10 @@ discard block |
||
| 242 | 242 | $outer = ""; |
| 243 | 243 | $profile->setAnonymousIDSupport(FALSE); |
| 244 | 244 | } else { |
| 245 | - $outer = $outer . "@"; |
|
| 245 | + $outer = $outer."@"; |
|
| 246 | 246 | $profile->setAnonymousIDSupport(TRUE); |
| 247 | 247 | } |
| 248 | - $profile->setRealm($outer . $realm); |
|
| 248 | + $profile->setRealm($outer.$realm); |
|
| 249 | 249 | } |
| 250 | 250 | /* const AUXATTRIB_PROFILE_TESTUSER = 'ATTRIB-PROFILE-TESTUSER'; */ |
| 251 | 251 | $testuser = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_TESTUSER); |
@@ -473,7 +473,7 @@ discard block |
||
| 473 | 473 | // extract relevant subset of information from cert objects |
| 474 | 474 | $certDetails = []; |
| 475 | 475 | foreach ($certs as $cert) { |
| 476 | - $certDetails[$cert->ca_type . ":" . $cert->serial] = ["ISSUED" => $cert->issued, "EXPIRY" => $cert->expiry, "STATUS" => $cert->status, "DEVICE" => $cert->device, "CN" => $cert->username, "ANNOTATION" => $cert->annotation]; |
|
| 476 | + $certDetails[$cert->ca_type.":".$cert->serial] = ["ISSUED" => $cert->issued, "EXPIRY" => $cert->expiry, "STATUS" => $cert->status, "DEVICE" => $cert->device, "CN" => $cert->username, "ANNOTATION" => $cert->annotation]; |
|
| 477 | 477 | } |
| 478 | 478 | $adminApi->returnSuccess($certDetails); |
| 479 | 479 | break; |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | |
| 24 | 24 | use \Exception; |
| 25 | 25 | |
| 26 | -require_once dirname(dirname(__DIR__)) . "/config/_config.php"; |
|
| 26 | +require_once dirname(dirname(__DIR__))."/config/_config.php"; |
|
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * This class talks to end users, asking them annoying questions to get to the |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | "TXT" => _("Did the device previously work when roaming, i.e. at other hotspots away from your home institution?"), |
| 76 | 76 | "FACTOR_YES" => 0.6, // that's good, and somewhat encouraging |
| 77 | 77 | "FACTOR_NO" => 3, // that is almost a smoking gun |
| 78 | - "VERDICTLECTURE" => sprintf(_("If roaming consistently does not work, then very likely your device configuration is wrong. Typical errors causing this symptom include: using a routing ('outer') username without the @realm.tld suffix - those potentially work at your home organisation, but can not be used when roaming. %s"),$confAssistantText)], |
|
| 78 | + "VERDICTLECTURE" => sprintf(_("If roaming consistently does not work, then very likely your device configuration is wrong. Typical errors causing this symptom include: using a routing ('outer') username without the @realm.tld suffix - those potentially work at your home organisation, but can not be used when roaming. %s"), $confAssistantText)], |
|
| 79 | 79 | 3 => ["AREA" => AbstractTest::INFRA_DEVICE, |
| 80 | 80 | "TXT" => _("Did you recently change the configuration on your device?"), |
| 81 | 81 | "FACTOR_YES" => 3, // that is almost a smoking gun |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | "TXT" => _("If you use more than one device: do your other devices still work?"), |
| 91 | 91 | "FACTOR_YES" => 0.33, // seems that all is okay with the account as such |
| 92 | 92 | "FACTOR_NO" => 3, // now that is suspicious indeed |
| 93 | - "VERDICTLECTURE" => _("If all devices stopped working simultaneously, there may be a problem with your account as such. Maybe your account expired, or you were forced to change the password? These questions are best answered by your Identity Provider [MGW: display contact info]"),], |
|
| 93 | + "VERDICTLECTURE" => _("If all devices stopped working simultaneously, there may be a problem with your account as such. Maybe your account expired, or you were forced to change the password? These questions are best answered by your Identity Provider [MGW: display contact info]"), ], |
|
| 94 | 94 | 6 => ["AREA" => AbstractTest::INFRA_SP_80211, |
| 95 | 95 | "TXT" => _("Is the place you are currently at heavily crowded, or is a network-intensive workload going on?"), |
| 96 | 96 | "FACTOR_YES" => 3, |
@@ -124,11 +124,11 @@ discard block |
||
| 124 | 124 | $questionDetails = $this->qaArray[$questionNumber]; |
| 125 | 125 | if ($answer === TRUE) { |
| 126 | 126 | $this->possibleFailureReasons[$questionDetails['AREA']] = $this->possibleFailureReasons[$questionDetails['AREA']] * $questionDetails["FACTOR_YES"]; |
| 127 | - $this->loggerInstance->debug(3,"Adjusting ".$questionDetails['AREA']." by ".$questionDetails["FACTOR_YES"]."\n"); |
|
| 127 | + $this->loggerInstance->debug(3, "Adjusting ".$questionDetails['AREA']." by ".$questionDetails["FACTOR_YES"]."\n"); |
|
| 128 | 128 | $factor = $questionDetails["FACTOR_YES"]; |
| 129 | 129 | } elseif ($answer === FALSE) { |
| 130 | 130 | $this->possibleFailureReasons[$questionDetails['AREA']] = $this->possibleFailureReasons[$questionDetails['AREA']] * $questionDetails["FACTOR_NO"]; |
| 131 | - $this->loggerInstance->debug(3,"Adjusting ".$questionDetails['AREA']." by ".$questionDetails["FACTOR_NO"]."\n"); |
|
| 131 | + $this->loggerInstance->debug(3, "Adjusting ".$questionDetails['AREA']." by ".$questionDetails["FACTOR_NO"]."\n"); |
|
| 132 | 132 | $factor = $questionDetails["FACTOR_NO"]; |
| 133 | 133 | } else { |
| 134 | 134 | $factor = 1; |
@@ -138,8 +138,8 @@ discard block |
||
| 138 | 138 | $this->additionalFindings["QUESTIONSASKED"] = $this->previousQuestions; |
| 139 | 139 | $_SESSION["SUSPECTS"] = $this->possibleFailureReasons; |
| 140 | 140 | $_SESSION["EVIDENCE"] = $this->additionalFindings; |
| 141 | - $this->loggerInstance->debug(3,$_SESSION['SUSPECTS']); |
|
| 142 | - $this->loggerInstance->debug(3,$_SESSION['EVIDENCE']); |
|
| 141 | + $this->loggerInstance->debug(3, $_SESSION['SUSPECTS']); |
|
| 142 | + $this->loggerInstance->debug(3, $_SESSION['EVIDENCE']); |
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | /** |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | // if both are identical, take any of the questions in the pool of both |
| 159 | 159 | foreach ($this->qaArray as $questionNumber => $questionDetails) { |
| 160 | 160 | // if we find a question we didn't ask before AND it is related to our currently high-scoring problem area, ask it |
| 161 | - if (!array_key_exists($questionNumber, $this->previousQuestions) && ( $questionDetails["AREA"] == $highestCategory || $questionDetails["AREA"] == $nextCategory) ) { |
|
| 161 | + if (!array_key_exists($questionNumber, $this->previousQuestions) && ($questionDetails["AREA"] == $highestCategory || $questionDetails["AREA"] == $nextCategory)) { |
|
| 162 | 162 | return json_encode(["NEXTEXISTS" => TRUE, "NUMBER" => $questionNumber, "TEXT" => $questionDetails["TXT"]]); |
| 163 | 163 | } |
| 164 | 164 | } |
@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | * @return string JSON encoded array with all the info we have |
| 172 | 172 | */ |
| 173 | 173 | public function getCurrentGuessState() { |
| 174 | - return json_encode([ "SUSPECTS" => $this->possibleFailureReasons, "EVIDENCE" => $this->additionalFindings ]); |
|
| 174 | + return json_encode(["SUSPECTS" => $this->possibleFailureReasons, "EVIDENCE" => $this->additionalFindings]); |
|
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | /** |