@@ -143,8 +143,8 @@ |
||
143 | 143 | "OPT" => [API::AUXATTRIB_TARGETMAIL], |
144 | 144 | "RETVAL" => [ |
145 | 145 | ["TOKEN URL", |
146 | - "EMAIL SENT", // dependent on TARGETMAIL input |
|
147 | - "EMAIL TRANSPORT SECURE"], // dependent on TARGETMAIL input |
|
146 | + "EMAIL SENT", // dependent on TARGETMAIL input |
|
147 | + "EMAIL TRANSPORT SECURE"], // dependent on TARGETMAIL input |
|
148 | 148 | ] |
149 | 149 | ], |
150 | 150 | API::ACTION_ADMIN_DEL => [ |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | |
24 | 24 | use Exception; |
25 | 25 | |
26 | -require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/config/_config.php"; |
|
26 | +require_once dirname(dirname(dirname(dirname(__FILE__))))."/config/_config.php"; |
|
27 | 27 | |
28 | 28 | class API { |
29 | 29 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | const ACTIONS = [ |
85 | 85 | # inst-level actions |
86 | 86 | API::ACTION_NEWINST_BY_REF => [ |
87 | - "REQ" => [API::AUXATTRIB_EXTERNALID,], |
|
87 | + "REQ" => [API::AUXATTRIB_EXTERNALID, ], |
|
88 | 88 | "OPT" => [ |
89 | 89 | 'general:geo_coordinates', |
90 | 90 | 'general:logo_file', |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | "OPT" => [API::AUXATTRIB_TARGETMAIL], |
145 | 145 | "RETVAL" => [ |
146 | 146 | ["TOKEN URL", |
147 | - "EMAIL SENT", // dependent on TARGETMAIL input |
|
147 | + "EMAIL SENT", // dependent on TARGETMAIL input |
|
148 | 148 | "EMAIL TRANSPORT SECURE"], // dependent on TARGETMAIL input |
149 | 149 | ] |
150 | 150 | ], |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | API::ACTION_ENDUSER_NEW => [ |
207 | 207 | "REQ" => [API::AUXATTRIB_CAT_PROFILE_ID, API::AUXATTRIB_SB_USERNAME, API::AUXATTRIB_SB_EXPIRY], |
208 | 208 | "OPT" => [], |
209 | - "RETVAL" => [ API::AUXATTRIB_SB_USERNAME, API::AUXATTRIB_SB_USERID ], |
|
209 | + "RETVAL" => [API::AUXATTRIB_SB_USERNAME, API::AUXATTRIB_SB_USERID], |
|
210 | 210 | ], |
211 | 211 | API::ACTION_ENDUSER_DEACTIVATE => [ |
212 | 212 | "REQ" => [API::AUXATTRIB_CAT_PROFILE_ID, API::AUXATTRIB_SB_USERID], |
@@ -217,14 +217,14 @@ discard block |
||
217 | 217 | "REQ" => [API::AUXATTRIB_CAT_PROFILE_ID], |
218 | 218 | "OPT" => [], |
219 | 219 | "RETVAL" => [ |
220 | - [ API::AUXATTRIB_SB_USERID => API::AUXATTRIB_SB_USERNAME], |
|
220 | + [API::AUXATTRIB_SB_USERID => API::AUXATTRIB_SB_USERNAME], |
|
221 | 221 | ], |
222 | 222 | ], |
223 | 223 | API::ACTION_ENDUSER_IDENTIFY => [ |
224 | 224 | "REQ" => [API::AUXATTRIB_CAT_PROFILE_ID], |
225 | 225 | "OPT" => [API::AUXATTRIB_SB_USERID, API::AUXATTRIB_SB_USERNAME, API::AUXATTRIB_SB_CERTSERIAL], |
226 | 226 | "RETVAL" => [ |
227 | - [ API::AUXATTRIB_SB_USERID => API::AUXATTRIB_SB_USERNAME], |
|
227 | + [API::AUXATTRIB_SB_USERID => API::AUXATTRIB_SB_USERNAME], |
|
228 | 228 | ], |
229 | 229 | ], |
230 | 230 | |
@@ -234,9 +234,9 @@ discard block |
||
234 | 234 | "RETVAL" => [ |
235 | 235 | API::AUXATTRIB_TOKENURL, |
236 | 236 | API::AUXATTRIB_TOKEN, |
237 | - "EMAIL SENT", // dependent on TARGETMAIL input |
|
237 | + "EMAIL SENT", // dependent on TARGETMAIL input |
|
238 | 238 | "EMAIL TRANSPORT SECURE", // dependent on TARGETMAIL input |
239 | - "SMS SENT", // dependent on TARGETSMS input |
|
239 | + "SMS SENT", // dependent on TARGETSMS input |
|
240 | 240 | ] |
241 | 241 | ], |
242 | 242 | API::ACTION_TOKEN_REVOKE => [ |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | "REQ" => [API::AUXATTRIB_CAT_PROFILE_ID, API::AUXATTRIB_SB_USERID], |
256 | 256 | "OPT" => [], |
257 | 257 | "RETVAL" => [ |
258 | - [ API::AUXATTRIB_SB_CERTSERIAL => ["ISSUED", "EXPIRY", "STATUS", "DEVICE", "CN" ]] |
|
258 | + [API::AUXATTRIB_SB_CERTSERIAL => ["ISSUED", "EXPIRY", "STATUS", "DEVICE", "CN"]] |
|
259 | 259 | ] |
260 | 260 | ], |
261 | 261 | API::ACTION_CERT_REVOKE => [ |
@@ -386,8 +386,8 @@ discard block |
||
386 | 386 | |
387 | 387 | case \core\Options::TYPECODE_COORDINATES: |
388 | 388 | $extension = \core\Options::TYPECODE_TEXT; |
389 | - $coercedInline["option"][$basename] = $oneAttrib['NAME'] . "#"; |
|
390 | - $coercedInline["value"][$basename . "-" . $extension] = $oneAttrib['VALUE']; |
|
389 | + $coercedInline["option"][$basename] = $oneAttrib['NAME']."#"; |
|
390 | + $coercedInline["value"][$basename."-".$extension] = $oneAttrib['VALUE']; |
|
391 | 391 | break; |
392 | 392 | case \core\Options::TYPECODE_TEXT: |
393 | 393 | // fall-through: they all get the same treatment |
@@ -397,19 +397,19 @@ discard block |
||
397 | 397 | // fall-through: they all get the same treatment |
398 | 398 | case \core\Options::TYPECODE_INTEGER: |
399 | 399 | $extension = $optionInfo['type']; |
400 | - $coercedInline["option"][$basename] = $oneAttrib['NAME'] . "#"; |
|
401 | - $coercedInline["value"][$basename . "-" . $extension] = $oneAttrib['VALUE']; |
|
400 | + $coercedInline["option"][$basename] = $oneAttrib['NAME']."#"; |
|
401 | + $coercedInline["value"][$basename."-".$extension] = $oneAttrib['VALUE']; |
|
402 | 402 | if ($optionInfo['flag'] == "ML") { |
403 | - $coercedInline["value"][$basename . "-lang"] = $oneAttrib['LANG']; |
|
403 | + $coercedInline["value"][$basename."-lang"] = $oneAttrib['LANG']; |
|
404 | 404 | } |
405 | 405 | break; |
406 | 406 | case \core\Options::TYPECODE_FILE: |
407 | 407 | // binary data is expected in base64 encoding. This is true |
408 | 408 | // also for PEM files! |
409 | 409 | $extension = $optionInfo['type']; |
410 | - $coercedInline["option"][$basename] = $oneAttrib['NAME'] . "#"; |
|
411 | - file_put_contents($dir['dir'] . "/" . $basename . "-" . $extension, base64_decode($oneAttrib['VALUE'])); |
|
412 | - $coercedFile["value"]['tmp_name'][$basename . "-" . $extension] = $dir['dir'] . "/" . $basename . "-" . $extension; |
|
410 | + $coercedInline["option"][$basename] = $oneAttrib['NAME']."#"; |
|
411 | + file_put_contents($dir['dir']."/".$basename."-".$extension, base64_decode($oneAttrib['VALUE'])); |
|
412 | + $coercedFile["value"]['tmp_name'][$basename."-".$extension] = $dir['dir']."/".$basename."-".$extension; |
|
413 | 413 | break; |
414 | 414 | default: |
415 | 415 | throw new Exception("We don't seem to know this type code!"); |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | ?> |
27 | 27 | <?php |
28 | 28 | |
29 | -require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/config/_config.php"; |
|
29 | +require_once dirname(dirname(dirname(dirname(__FILE__))))."/config/_config.php"; |
|
30 | 30 | |
31 | 31 | /** |
32 | 32 | * This class parses HTML field input from POST and FILES and extracts valid and authorized options to be set. |
@@ -344,14 +344,14 @@ discard block |
||
344 | 344 | case \core\Options::TYPECODE_TEXT: |
345 | 345 | case \core\Options::TYPECODE_COORDINATES: |
346 | 346 | case \core\Options::TYPECODE_INTEGER: |
347 | - $varName = "$objId-" . $validators[$optioninfo['type']]['field']; |
|
347 | + $varName = "$objId-".$validators[$optioninfo['type']]['field']; |
|
348 | 348 | if (!empty($listOfEntries[$varName])) { |
349 | 349 | $content = call_user_func_array([$this->validator, $validators[$optioninfo['type']]['function']], array_merge([$listOfEntries[$varName]], $validators[$optioninfo['type']]['extraarg'])); |
350 | 350 | break; |
351 | 351 | } |
352 | 352 | continue 2; |
353 | 353 | case \core\Options::TYPECODE_BOOLEAN: |
354 | - $varName = "$objId-" . \core\Options::TYPECODE_BOOLEAN; |
|
354 | + $varName = "$objId-".\core\Options::TYPECODE_BOOLEAN; |
|
355 | 355 | if (!empty($listOfEntries[$varName])) { |
356 | 356 | $contentValid = $this->validator->boolean($listOfEntries[$varName]); |
357 | 357 | if ($contentValid) { |
@@ -364,24 +364,24 @@ discard block |
||
364 | 364 | } |
365 | 365 | continue 2; |
366 | 366 | case \core\Options::TYPECODE_STRING: |
367 | - if (!empty($listOfEntries["$objId-" . \core\Options::TYPECODE_STRING])) { |
|
367 | + if (!empty($listOfEntries["$objId-".\core\Options::TYPECODE_STRING])) { |
|
368 | 368 | switch ($objValue) { |
369 | 369 | case "media:consortium_OI": |
370 | - $content = $this->validator->consortiumOI($listOfEntries["$objId-" . \core\Options::TYPECODE_STRING]); |
|
370 | + $content = $this->validator->consortiumOI($listOfEntries["$objId-".\core\Options::TYPECODE_STRING]); |
|
371 | 371 | if ($content === FALSE) { |
372 | 372 | $bad[] = $objValue; |
373 | 373 | continue 3; |
374 | 374 | } |
375 | 375 | break; |
376 | 376 | case "media:remove_SSID": |
377 | - $content = $this->validator->string($listOfEntries["$objId-" . \core\Options::TYPECODE_STRING]); |
|
377 | + $content = $this->validator->string($listOfEntries["$objId-".\core\Options::TYPECODE_STRING]); |
|
378 | 378 | if ($content == "eduroam") { |
379 | 379 | $bad[] = $objValue; |
380 | 380 | continue 3; |
381 | 381 | } |
382 | 382 | break; |
383 | 383 | case "media:force_proxy": |
384 | - $content = $this->validator->string($listOfEntries["$objId-" . \core\Options::TYPECODE_STRING]); |
|
384 | + $content = $this->validator->string($listOfEntries["$objId-".\core\Options::TYPECODE_STRING]); |
|
385 | 385 | $serverAndPort = explode(':', strrev($content), 2); |
386 | 386 | if (count($serverAndPort) != 2) { |
387 | 387 | $bad[] = $objValue; |
@@ -394,33 +394,33 @@ discard block |
||
394 | 394 | } |
395 | 395 | break; |
396 | 396 | case "support:url": |
397 | - $content = $this->validator->string($listOfEntries["$objId-" . \core\Options::TYPECODE_STRING]); |
|
398 | - if (preg_match("/^http/",$content) != 1) { |
|
397 | + $content = $this->validator->string($listOfEntries["$objId-".\core\Options::TYPECODE_STRING]); |
|
398 | + if (preg_match("/^http/", $content) != 1) { |
|
399 | 399 | $bad[] = $objValue; |
400 | 400 | continue 3; |
401 | 401 | } |
402 | 402 | break; |
403 | 403 | case "support:email": |
404 | - $content = $this->validator->email($listOfEntries["$objId-" . \core\Options::TYPECODE_STRING]); |
|
404 | + $content = $this->validator->email($listOfEntries["$objId-".\core\Options::TYPECODE_STRING]); |
|
405 | 405 | if ($content === FALSE) { |
406 | 406 | $bad[] = $objValue; |
407 | 407 | continue 3; |
408 | 408 | } |
409 | 409 | break; |
410 | 410 | default: |
411 | - $content = $this->validator->string($listOfEntries["$objId-" . \core\Options::TYPECODE_STRING]); |
|
411 | + $content = $this->validator->string($listOfEntries["$objId-".\core\Options::TYPECODE_STRING]); |
|
412 | 412 | break; |
413 | 413 | } |
414 | 414 | break; |
415 | 415 | } |
416 | 416 | continue 2; |
417 | 417 | case \core\Options::TYPECODE_FILE: |
418 | - if (!empty($listOfEntries["$objId-" . \core\Options::TYPECODE_STRING])) { // was already in, by ROWID reference, extract |
|
418 | + if (!empty($listOfEntries["$objId-".\core\Options::TYPECODE_STRING])) { // was already in, by ROWID reference, extract |
|
419 | 419 | // ROWID means it's a multi-line string (simple strings are inline in the form; so allow whitespace) |
420 | - $content = $this->validator->string(urldecode($listOfEntries["$objId-" . \core\Options::TYPECODE_STRING]), TRUE); |
|
420 | + $content = $this->validator->string(urldecode($listOfEntries["$objId-".\core\Options::TYPECODE_STRING]), TRUE); |
|
421 | 421 | break; |
422 | - } else if (isset($listOfEntries["$objId-" . \core\Options::TYPECODE_FILE]) && ($listOfEntries["$objId-" . \core\Options::TYPECODE_FILE] != "")) { // let's do the download |
|
423 | - $rawContent = \core\common\OutsideComm::downloadFile("file:///" . $listOfEntries["$objId-" . \core\Options::TYPECODE_FILE]); |
|
422 | + } else if (isset($listOfEntries["$objId-".\core\Options::TYPECODE_FILE]) && ($listOfEntries["$objId-".\core\Options::TYPECODE_FILE] != "")) { // let's do the download |
|
423 | + $rawContent = \core\common\OutsideComm::downloadFile("file:///".$listOfEntries["$objId-".\core\Options::TYPECODE_FILE]); |
|
424 | 424 | |
425 | 425 | if ($rawContent === FALSE || !$this->checkUploadSanity($objValue, $rawContent)) { |
426 | 426 | $bad[] = $objValue; |
@@ -431,7 +431,7 @@ discard block |
||
431 | 431 | } |
432 | 432 | continue 2; |
433 | 433 | default: |
434 | - throw new Exception("Internal Error: Unknown option type " . $objValue . "!"); |
|
434 | + throw new Exception("Internal Error: Unknown option type ".$objValue."!"); |
|
435 | 435 | } |
436 | 436 | // lang can be NULL here, if it's not a multilang attribute, or a ROWID reference. Never mind that. |
437 | 437 | $retval[] = ["$objValue" => ["lang" => $lang, "content" => $content]]; |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | |
22 | 22 | namespace web\lib\admin; |
23 | 23 | |
24 | -require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/config/_config.php"; |
|
24 | +require_once dirname(dirname(dirname(dirname(__FILE__))))."/config/_config.php"; |
|
25 | 25 | |
26 | 26 | /** |
27 | 27 | * This class provides map display functionality |
@@ -121,19 +121,19 @@ discard block |
||
121 | 121 | protected function htmlPreEdit($wizardMode, $additional) { |
122 | 122 | \core\common\Entity::intoThePotatoes(); |
123 | 123 | $retval = "<fieldset class='option_container'> |
124 | - <legend><strong>" . _("Location") . "</strong></legend>"; |
|
124 | + <legend><strong>" . _("Location")."</strong></legend>"; |
|
125 | 125 | |
126 | 126 | if ($wizardMode) { |
127 | - $retval .= "<p>" . |
|
128 | - _("The user download interface (see <a href='../'>here</a>), uses geolocation to suggest possibly matching IdPs to the user. The more precise you define the location here, the easier your users will find you.") . |
|
127 | + $retval .= "<p>". |
|
128 | + _("The user download interface (see <a href='../'>here</a>), uses geolocation to suggest possibly matching IdPs to the user. The more precise you define the location here, the easier your users will find you."). |
|
129 | 129 | "</p> |
130 | 130 | <ul>" . |
131 | 131 | _("<li>Drag the marker in the map to your place, or</li> |
132 | 132 | <li>enter your street address in the field below for lookup, or</li> |
133 | -<li>use the 'Locate Me!' button</li>") . |
|
133 | +<li>use the 'Locate Me!' button</li>"). |
|
134 | 134 | "</ul> |
135 | 135 | <strong>" . |
136 | - _("We will use the coordinates as indicated by the marker for geolocation.") . |
|
136 | + _("We will use the coordinates as indicated by the marker for geolocation."). |
|
137 | 137 | "</strong>"; |
138 | 138 | } |
139 | 139 | if ($additional) { |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | */ |
152 | 152 | protected function htmlPostEdit($allowDirectInput) { |
153 | 153 | \core\common\Entity::intoThePotatoes(); |
154 | - $retval = "<br/>" . _("Latitude:") . " <input style='width:80px' name='geo_lat' id='geo_lat' " .($allowDirectInput ? "": "readonly"). ">" . _("Longitude:") . " <input name='geo_long' id='geo_long' style='width:80px' " .($allowDirectInput ? "": "readonly"). "></fieldset>"; |
|
154 | + $retval = "<br/>"._("Latitude:")." <input style='width:80px' name='geo_lat' id='geo_lat' ".($allowDirectInput ? "" : "readonly").">"._("Longitude:")." <input name='geo_long' id='geo_long' style='width:80px' ".($allowDirectInput ? "" : "readonly")."></fieldset>"; |
|
155 | 155 | \core\common\Entity::outOfThePotatoes(); |
156 | 156 | return $retval; |
157 | 157 | } |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | private function inputValidationError($customtext) { |
39 | 39 | \core\common\Entity::intoThePotatoes(); |
40 | - $retval = "<p>" . _("Input validation error: ") . $customtext . "</p>"; |
|
40 | + $retval = "<p>"._("Input validation error: ").$customtext."</p>"; |
|
41 | 41 | \core\common\Entity::outOfThePotatoes(); |
42 | 42 | return $retval; |
43 | 43 | } |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | */ |
173 | 173 | public function string($input, $allowWhitespace = FALSE) { |
174 | 174 | // always chop out invalid characters, and surrounding whitespace |
175 | - $retvalStep0 = iconv("UTF-8", "UTF-8//TRANSLIT", $input); |
|
175 | + $retvalStep0 = iconv("UTF-8", "UTF-8//TRANSLIT", $input); |
|
176 | 176 | if ($retvalStep0 === FALSE) { |
177 | 177 | throw new Exception("iconv failure for string sanitisation. With TRANSLIT, this should never happen!"); |
178 | 178 | } |
@@ -411,7 +411,7 @@ discard block |
||
411 | 411 | */ |
412 | 412 | public function hostname($input) { |
413 | 413 | // is it a valid IP address (IPv4 or IPv6), or a hostname? |
414 | - if (filter_var($input, FILTER_VALIDATE_IP) || $this->email("stefan@" . $input) !== FALSE) { |
|
414 | + if (filter_var($input, FILTER_VALIDATE_IP) || $this->email("stefan@".$input) !== FALSE) { |
|
415 | 415 | // if it's a verified IP address or hostname then it does not contain |
416 | 416 | // rubbish of course. But just to be sure, run htmlspecialchars around it |
417 | 417 | return htmlspecialchars($input, ENT_QUOTES); |
@@ -489,7 +489,7 @@ discard block |
||
489 | 489 | try { |
490 | 490 | $image->readImageBlob($binary); |
491 | 491 | } catch (\ImagickException $exception) { |
492 | - echo "Error" . $exception->getMessage(); |
|
492 | + echo "Error".$exception->getMessage(); |
|
493 | 493 | return FALSE; |
494 | 494 | } |
495 | 495 | // image survived the sanity check |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | * @author Stefan Winter <[email protected]> |
27 | 27 | * @package Core |
28 | 28 | */ |
29 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
29 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
30 | 30 | |
31 | 31 | $cleanToken = FALSE; |
32 | 32 | $invitationObject = new core\SilverbulletInvitation("INVALID"); |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | |
74 | 74 | $statusInfo = ["token" => $cleanToken, |
75 | 75 | "invitation_object" => $invitationObject, |
76 | - "OS" => $Gui->operatingSystem,]; |
|
76 | + "OS" => $Gui->operatingSystem, ]; |
|
77 | 77 | |
78 | 78 | if ($profile !== NULL) { |
79 | 79 | $attributes = $Gui->profileAttributes($profile->identifier); |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | $caAndSerial = filter_input(INPUT_GET, 'serial', FILTER_SANITIZE_STRING); |
87 | 87 | |
88 | 88 | if ($action !== NULL && $action !== FALSE && $action === \web\lib\common\FormElements::BUTTON_DELETE && $caAndSerial !== NULL && $caAndSerial !== FALSE) { |
89 | - $tuple = explode(':',$caAndSerial); |
|
89 | + $tuple = explode(':', $caAndSerial); |
|
90 | 90 | $ca_type = $tuple[0]; |
91 | 91 | $serial = $tuple[1]; |
92 | 92 | if ($statusInfo['invitation_object']->invitationTokenStatus != \core\SilverbulletInvitation::SB_TOKENSTATUS_INVALID) { |
@@ -101,12 +101,12 @@ discard block |
||
101 | 101 | print "//REVOKING\n"; |
102 | 102 | $certObject = new \core\SilverbulletCertificate($serial, $ca_type); |
103 | 103 | $certObject->revokeCertificate(); |
104 | - header("Location: accountstatus.php?token=" . $statusInfo['token']); |
|
104 | + header("Location: accountstatus.php?token=".$statusInfo['token']); |
|
105 | 105 | exit; |
106 | 106 | } |
107 | 107 | } |
108 | 108 | } |
109 | - header("Location: accountstatus.php?token=" . $statusInfo['token']); |
|
109 | + header("Location: accountstatus.php?token=".$statusInfo['token']); |
|
110 | 110 | exit; |
111 | 111 | } |
112 | 112 | |
@@ -131,4 +131,4 @@ discard block |
||
131 | 131 | $skinObject = new \web\lib\user\Skinjob($_REQUEST['skin'] ?? $_SESSION['skin'] ?? $fedskin[0] ?? CONFIG['APPEARANCE']['skins'][0]); |
132 | 132 | |
133 | 133 | // and now, serve actual data |
134 | -require "../skins/" . $skinObject->skin . "/accountstatus/accountstatus.php"; |
|
134 | +require "../skins/".$skinObject->skin."/accountstatus/accountstatus.php"; |
@@ -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 |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | otherdata = j.otherdata; |
88 | 88 | if(! result) { |
89 | 89 | alert("<?php escaped_echo(_("no matching data found"))?>"); |
90 | - document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/') . '/' ?>'; |
|
90 | + document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/').'/' ?>'; |
|
91 | 91 | } |
92 | 92 | j = j.data; |
93 | 93 | n = j.length; |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | result = j1.status; |
225 | 225 | if(! result) { |
226 | 226 | alert("<?php escaped_echo(_("no matching data found")) ?>"); |
227 | - document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/') . '/' ?>'; |
|
227 | + document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/').'/' ?>'; |
|
228 | 228 | } |
229 | 229 | j = j1.data; |
230 | 230 | if(j.description !== undefined && j.description) { |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | * the receiving end to strip this marker and not add the title by itself. |
31 | 31 | * |
32 | 32 | */ |
33 | -require_once dirname(dirname(dirname((dirname(dirname(__FILE__)))))) . "/config/_config.php"; |
|
33 | +require_once dirname(dirname(dirname((dirname(dirname(__FILE__))))))."/config/_config.php"; |
|
34 | 34 | |
35 | 35 | $Gui = new \web\lib\user\Gui(); |
36 | 36 | |
@@ -40,46 +40,46 @@ discard block |
||
40 | 40 | $subpage = $_REQUEST['subpage']; |
41 | 41 | switch ($page) { |
42 | 42 | case 'about' : |
43 | - require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/user/about_cat.inc.php"; |
|
43 | + require_once dirname(dirname(dirname(dirname(__FILE__))))."/user/about_cat.inc.php"; |
|
44 | 44 | $out = "<div class='padding'>$out</div>"; |
45 | 45 | break; |
46 | 46 | case 'tou': |
47 | - require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/user/tou.inc.php"; |
|
47 | + require_once dirname(dirname(dirname(dirname(__FILE__))))."/user/tou.inc.php"; |
|
48 | 48 | $out = "no_title<div> |
49 | 49 | <h1> |
50 | - " . $Tou['title'] . " |
|
50 | + " . $Tou['title']." |
|
51 | 51 | </h1> |
52 | -<div id='tou_1'>" . $Tou['subtitle'] . |
|
53 | -$Tou['short'] . " |
|
52 | +<div id='tou_1'>" . $Tou['subtitle']. |
|
53 | +$Tou['short']." |
|
54 | 54 | </div> |
55 | 55 | <div id='all_tou_link'><a href='javascript:showTOU()'>Click here to see the full terms</a></div> |
56 | 56 | <div id='tou_2' style='display:none; padding-top:20px'>" . |
57 | -$Tou['full'] . " |
|
57 | +$Tou['full']." |
|
58 | 58 | </div> |
59 | 59 | </div> |
60 | 60 | "; |
61 | 61 | break; |
62 | 62 | case 'help': |
63 | - require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/user/faq.inc.php"; |
|
63 | + require_once dirname(dirname(dirname(dirname(__FILE__))))."/user/faq.inc.php"; |
|
64 | 64 | switch ($subpage) { |
65 | 65 | case 'contact' : |
66 | 66 | case 'idp_not_listed' : |
67 | 67 | case 'device_not_listed' : |
68 | 68 | case 'what_is_eduroam' : |
69 | - $out = "no_title<div><h1>" . _("Help") . "</h1>"; |
|
69 | + $out = "no_title<div><h1>"._("Help")."</h1>"; |
|
70 | 70 | foreach ($Faq as $faqItem) { |
71 | 71 | if (!empty($faqItem['id']) && $faqItem['id'] == $subpage) { |
72 | - $out .= "<div><h3>" . $faqItem['title'] . "</h3>\n"; |
|
73 | - $out .= "" . $faqItem['text'] . "</div>\n"; |
|
72 | + $out .= "<div><h3>".$faqItem['title']."</h3>\n"; |
|
73 | + $out .= "".$faqItem['text']."</div>\n"; |
|
74 | 74 | } |
75 | 75 | } |
76 | 76 | $out .= "</div>"; |
77 | 77 | break; |
78 | 78 | case 'faq': |
79 | - $out = "no_title<div><h1>" . _("Frequently Asked Questions") . "</h1>"; |
|
79 | + $out = "no_title<div><h1>"._("Frequently Asked Questions")."</h1>"; |
|
80 | 80 | foreach ($Faq as $faqItem) { |
81 | - $out .= "<div><h3>" . $faqItem['title'] . "</h3>\n"; |
|
82 | - $out .= "" . $faqItem['text'] . "</div>\n"; |
|
81 | + $out .= "<div><h3>".$faqItem['title']."</h3>\n"; |
|
82 | + $out .= "".$faqItem['text']."</div>\n"; |
|
83 | 83 | } |
84 | 84 | $out .= "</div>"; |
85 | 85 | break; |
@@ -103,15 +103,15 @@ discard block |
||
103 | 103 | $rn = uniqid(); |
104 | 104 | $_SESSION['remindIdP'] = $rn; |
105 | 105 | $out .= "<input type='hidden' id='remindIdPs' value='$rn'>"; |
106 | - $out .= "<p><button type='button' onclick='goAdmin(); return(false);'>" . _("Login") . "</button>"; |
|
107 | - $out .= "<br/><br/><p>" . _("Did you forget with which Identity Provider you logged in to the system? We can try to find out if you specify the email address with which you were invited to the system in the box below. This may not work if you were invited from a third-party website via the AdminAPI.") . "</p>"; |
|
108 | - $out .= "<input id='remindIdP' type='text'/><button onclick='remindIdPF(); return false;'>" . _("Get IdP Reminder") . "</button>"; |
|
106 | + $out .= "<p><button type='button' onclick='goAdmin(); return(false);'>"._("Login")."</button>"; |
|
107 | + $out .= "<br/><br/><p>"._("Did you forget with which Identity Provider you logged in to the system? We can try to find out if you specify the email address with which you were invited to the system in the box below. This may not work if you were invited from a third-party website via the AdminAPI.")."</p>"; |
|
108 | + $out .= "<input id='remindIdP' type='text'/><button onclick='remindIdPF(); return false;'>"._("Get IdP Reminder")."</button>"; |
|
109 | 109 | $out .= "<div id='remindIdPd'><span id='remindIdPh'></span><ul id='remindIdPl'></ul></div>"; |
110 | 110 | $out = "<div class='padding'>$out</div>"; |
111 | 111 | } |
112 | 112 | break; |
113 | 113 | case 'develop' : |
114 | - require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/user/devel.inc.php"; |
|
114 | + require_once dirname(dirname(dirname(dirname(__FILE__))))."/user/devel.inc.php"; |
|
115 | 115 | $out = "<div class='padding'>$out</div>"; |
116 | 116 | break; |
117 | 117 | } |
@@ -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(dirname(__FILE__)))) . "/config/_config.php"; |
|
22 | +require_once dirname(dirname(dirname(dirname(__FILE__))))."/config/_config.php"; |
|
23 | 23 | |
24 | 24 | /** |
25 | 25 | * Menu class helps to define the menu on the main page |
@@ -39,9 +39,9 @@ discard block |
||
39 | 39 | $langsArray = []; |
40 | 40 | foreach (CONFIG['LANGUAGES'] as $lang => $value) { |
41 | 41 | if ($lang == $selectedLang) { |
42 | - $langsArray[] = ['text'=>$value['display'], 'link'=>'javascript:changeLang("' . $lang . '")', 'class'=>'selected-lang']; |
|
42 | + $langsArray[] = ['text'=>$value['display'], 'link'=>'javascript:changeLang("'.$lang.'")', 'class'=>'selected-lang']; |
|
43 | 43 | } else { |
44 | - $langsArray[] = ['text'=>$value['display'], 'link'=>'javascript:changeLang("' . $lang . '")']; |
|
44 | + $langsArray[] = ['text'=>$value['display'], 'link'=>'javascript:changeLang("'.$lang.'")']; |
|
45 | 45 | } |
46 | 46 | } |
47 | 47 | $this->menu = [['id' => 'start', |
@@ -92,13 +92,13 @@ discard block |
||
92 | 92 | $iD = $menuItem['id'] ?? $id; |
93 | 93 | $catInfo = NULL; |
94 | 94 | if (!empty($menuItem['catInfo'])) { |
95 | - $catInfo = 'javascript:infoCAT("' . $iD . '", "' . $menuItem['catInfo'][0] . '","' . $menuItem['catInfo'][1] . '")'; |
|
95 | + $catInfo = 'javascript:infoCAT("'.$iD.'", "'.$menuItem['catInfo'][0].'","'.$menuItem['catInfo'][1].'")'; |
|
96 | 96 | } |
97 | 97 | if (!empty($menuItem['link']) && substr($menuItem['link'], 0, 1) === '/') { |
98 | - $menuItem['link'] = \core\CAT::getRootUrlPath() . $menuItem['link']; |
|
98 | + $menuItem['link'] = \core\CAT::getRootUrlPath().$menuItem['link']; |
|
99 | 99 | } |
100 | 100 | $link = $catInfo ?? $menuItem['link'] ?? ''; |
101 | - $class = empty($menuItem['class']) ? '' : ' class="' . $menuItem['class'] . '"'; |
|
101 | + $class = empty($menuItem['class']) ? '' : ' class="'.$menuItem['class'].'"'; |
|
102 | 102 | $submenu = $menuItem['submenu'] ?? []; |
103 | 103 | $out .= $this->printMenuItem($menuItem['text'], $link, $class); |
104 | 104 | $out .= $this->printMenu($submenu, $iD); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | if ($itemLink === '') { |
115 | 115 | return("<li><span>$itemText</span>"); |
116 | 116 | } |
117 | - return "<li><a href='" . $itemLink . "'" . $itemClass . '>' . $itemText . "</a>"; |
|
117 | + return "<li><a href='".$itemLink."'".$itemClass.'>'.$itemText."</a>"; |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | public function printMinimalMenu() { |