@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | |
84 | 84 | // use HTML5 geolocation |
85 | 85 | function locateMe() { |
86 | - $('#address').val(\"" . _("locating") . "\"); |
|
86 | + $('#address').val(\"" . _("locating")."\"); |
|
87 | 87 | navigator.geolocation.getCurrentPosition(locate_succes,locate_fail,{maximumAge:3600000, timeout:5000}); |
88 | 88 | } |
89 | 89 | |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | view.fit(extent, {padding: [10, 0, 10, 0]}); |
206 | 206 | } else { |
207 | 207 | view.setCenter([0,0]); |
208 | - locate_country('" . $cat->knownFederations[strtoupper($this->fedName)] . "'); // use the federation code to locate the country |
|
208 | + locate_country('" . $cat->knownFederations[strtoupper($this->fedName)]."'); // use the federation code to locate the country |
|
209 | 209 | map.setView(view); |
210 | 210 | } |
211 | 211 | view.setMaxZoom(20); |
@@ -227,14 +227,14 @@ discard block |
||
227 | 227 | function getAddressLocation() { |
228 | 228 | var city = $('#address').val(); |
229 | 229 | if(city == '') { |
230 | - alert(\"" . _("nothing entered in the address field") . "\"); |
|
230 | + alert(\"" . _("nothing entered in the address field")."\"); |
|
231 | 231 | return false; |
232 | 232 | } |
233 | 233 | city = city.replace(/\s*,\s*/g,',+'); |
234 | 234 | city = city.replace(/ +/,'+'); |
235 | 235 | $.get(addressService+'?format=json&addressdetails=0&q='+city, '', function(data) { |
236 | 236 | if (data[0] === undefined) { |
237 | - alert('" . _("Address not found, perhaps try another form, like putting the street number to the front.") . "'); |
|
237 | + alert('" . _("Address not found, perhaps try another form, like putting the street number to the front.")."'); |
|
238 | 238 | return; |
239 | 239 | } |
240 | 240 | showTmpPointer(data[0].lon, data[0].lat); |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | if ($this->readOnly) { |
286 | 286 | return "<div id='map' class='locationmap'></div><script>generateMap('map')</script>"; |
287 | 287 | } else { |
288 | - return $this->htmlPreEdit($wizard, $additional) . $this->findLocationHtml() . "<span id='location-prompt'>You can drag the pointer to the final location before you save the results.</span><div id='map' class='locationmap'></div><script>generateMap('map')</script>" . $this->htmlPostEdit(FALSE); |
|
288 | + return $this->htmlPreEdit($wizard, $additional).$this->findLocationHtml()."<span id='location-prompt'>You can drag the pointer to the final location before you save the results.</span><div id='map' class='locationmap'></div><script>generateMap('map')</script>".$this->htmlPostEdit(FALSE); |
|
289 | 289 | } |
290 | 290 | } |
291 | 291 | |
@@ -310,7 +310,7 @@ discard block |
||
310 | 310 | // we don't need this parameter in this subclass |
311 | 311 | unset($coords); |
312 | 312 | \core\common\Entity::intoThePotatoes(); |
313 | - $retval = "<button id='location_b_" . $number . "' class='location_button'>" . _("Click to see location") . " $number</button>"; |
|
313 | + $retval = "<button id='location_b_".$number."' class='location_button'>"._("Click to see location")." $number</button>"; |
|
314 | 314 | \core\common\Entity::outOfThePotatoes(); |
315 | 315 | return $retval; |
316 | 316 | } |
@@ -322,7 +322,7 @@ discard block |
||
322 | 322 | */ |
323 | 323 | private function findLocationHtml() { |
324 | 324 | \core\common\Entity::intoThePotatoes(); |
325 | - $retval = "<p>" . _("Address:") . " <input name='address' id='address' /><button type='button' onclick='getAddressLocation()'>" . _("Find address") . "</button> <button type='button' onclick='locateMe()'>" . _("Locate Me!") . "</button></p>"; |
|
325 | + $retval = "<p>"._("Address:")." <input name='address' id='address' /><button type='button' onclick='getAddressLocation()'>"._("Find address")."</button> <button type='button' onclick='locateMe()'>"._("Locate Me!")."</button></p>"; |
|
326 | 326 | \core\common\Entity::outOfThePotatoes(); |
327 | 327 | return $retval; |
328 | 328 | } |
@@ -121,7 +121,7 @@ |
||
121 | 121 | if ($trailerPosition !== FALSE) { |
122 | 122 | $base = substr($scriptself, 0, $trailerPosition); |
123 | 123 | if ($base !== FALSE) { |
124 | - $url = "//$servername" . $base . "/logout_check.php"; |
|
124 | + $url = "//$servername".$base."/logout_check.php"; |
|
125 | 125 | } |
126 | 126 | } |
127 | 127 |
@@ -136,19 +136,19 @@ discard block |
||
136 | 136 | protected function htmlPreEdit($wizardMode, $additional) { |
137 | 137 | \core\common\Entity::intoThePotatoes(); |
138 | 138 | $retval = "<fieldset class='option_container'> |
139 | - <legend><strong>" . _("Location") . "</strong></legend>"; |
|
139 | + <legend><strong>" . _("Location")."</strong></legend>"; |
|
140 | 140 | |
141 | 141 | if ($wizardMode) { |
142 | - $retval .= "<p>" . |
|
143 | - _("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.") . |
|
142 | + $retval .= "<p>". |
|
143 | + _("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."). |
|
144 | 144 | "</p> |
145 | 145 | <ul>" . |
146 | 146 | _("<li>Drag the marker in the map to your place, or</li> |
147 | 147 | <li>enter your street address in the field below for lookup, or</li> |
148 | -<li>use the 'Locate Me!' button</li>") . |
|
148 | +<li>use the 'Locate Me!' button</li>"). |
|
149 | 149 | "</ul> |
150 | 150 | <strong>" . |
151 | - _("We will use the coordinates as indicated by the marker for geolocation.") . |
|
151 | + _("We will use the coordinates as indicated by the marker for geolocation."). |
|
152 | 152 | "</strong>"; |
153 | 153 | } |
154 | 154 | if ($additional) { |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | */ |
167 | 167 | protected function htmlPostEdit($allowDirectInput) { |
168 | 168 | \core\common\Entity::intoThePotatoes(); |
169 | - $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>"; |
|
169 | + $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>"; |
|
170 | 170 | \core\common\Entity::outOfThePotatoes(); |
171 | 171 | return $retval; |
172 | 172 | } |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | * <base_url>/copyright.php after deploying the software |
20 | 20 | */ |
21 | 21 | |
22 | -require_once __DIR__ . "/../core/Psr4Autoloader.php"; |
|
22 | +require_once __DIR__."/../core/Psr4Autoloader.php"; |
|
23 | 23 | use core\autoloader\Psr4Autoloader; |
24 | 24 | |
25 | 25 | // instantiate the loader |
@@ -30,10 +30,10 @@ discard block |
||
30 | 30 | |
31 | 31 | // register the base directories for the namespace prefix |
32 | 32 | // include configuration |
33 | -$loader->addNamespace('config', __DIR__ ); |
|
33 | +$loader->addNamespace('config', __DIR__); |
|
34 | 34 | // include CAT/core library |
35 | -$loader->addNamespace('core', __DIR__ . "/../core"); |
|
35 | +$loader->addNamespace('core', __DIR__."/../core"); |
|
36 | 36 | // include CAT/devices library |
37 | -$loader->addNamespace('devices', __DIR__ . "/../devices"); |
|
37 | +$loader->addNamespace('devices', __DIR__."/../devices"); |
|
38 | 38 | // include CAT/web library |
39 | -$loader->addNamespace('web', __DIR__ . "/../web"); |
|
40 | 39 | \ No newline at end of file |
40 | +$loader->addNamespace('web', __DIR__."/../web"); |
|
41 | 41 | \ No newline at end of file |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | exec("openssl ocsp -reqin $derFilePath -req_text", $output, $retval); |
98 | 98 | |
99 | 99 | if ($retval !== 0) { |
100 | - throw new Exception("openssl ocsp returned a non-zero return code. The DER data is probably bogus. B64 representation of DER data is: " . base64_encode($ocspRequestDer)); |
|
100 | + throw new Exception("openssl ocsp returned a non-zero return code. The DER data is probably bogus. B64 representation of DER data is: ".base64_encode($ocspRequestDer)); |
|
101 | 101 | } |
102 | 102 | if ($output === NULL) { // this can't really happen, but makes Scrutinizer happier |
103 | 103 | $output = []; |
@@ -127,14 +127,14 @@ discard block |
||
127 | 127 | * back (if we have it). |
128 | 128 | */ |
129 | 129 | if (strcasecmp($nameHash, OUR_NAME_HASH) != 0 || strcasecmp($keyHash, OUR_KEY_HASH) != 0) { |
130 | - throw new Exception("The request is about a different Issuer name / public key. Expected vs. actual name hash: " . OUR_NAME_HASH . " / $nameHash, " . OUR_KEY_HASH . " / $keyHash"); |
|
130 | + throw new Exception("The request is about a different Issuer name / public key. Expected vs. actual name hash: ".OUR_NAME_HASH." / $nameHash, ".OUR_KEY_HASH." / $keyHash"); |
|
131 | 131 | } |
132 | -error_log("base64-encoded request: " . base64_encode($ocspRequestDer)); |
|
132 | +error_log("base64-encoded request: ".base64_encode($ocspRequestDer)); |
|
133 | 133 | |
134 | -$response = fopen(__DIR__ . "/statements/" . $serialHex . ".der", "r"); |
|
134 | +$response = fopen(__DIR__."/statements/".$serialHex.".der", "r"); |
|
135 | 135 | if ($response === FALSE) { // not found |
136 | 136 | // first lets load the unauthorised response, which is the default reply |
137 | - $unauthResponse = fopen(__DIR__ . "/statements/UNAUTHORIZED.der", "r"); |
|
137 | + $unauthResponse = fopen(__DIR__."/statements/UNAUTHORIZED.der", "r"); |
|
138 | 138 | if ($unauthResponse === FALSE) { |
139 | 139 | throw new Exception("Unable to open our canned UNAUTHORIZED response!"); |
140 | 140 | } |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | |
177 | 177 | $responseContent = fread($response, 1000000); |
178 | 178 | fclose($response); |
179 | -error_log("base64-encoded response: " . base64_encode($responseContent)); |
|
179 | +error_log("base64-encoded response: ".base64_encode($responseContent)); |
|
180 | 180 | header('Content-Type: application/ocsp-response'); |
181 | -header('Content-Length: ' . strlen($responseContent)); |
|
181 | +header('Content-Length: '.strlen($responseContent)); |
|
182 | 182 | echo $responseContent; |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | $this->activationsTotal = $invitationRow->quantity; |
146 | 146 | $certificatesResult = $this->databaseHandle->exec("SELECT `serial_number`, `ca_type` FROM `silverbullet_certificate` WHERE `silverbullet_invitation_id` = ? ORDER BY `revocation_status`, `expiry` DESC", "i", $this->identifier); |
147 | 147 | $certificatesNumber = ($certificatesResult ? $certificatesResult->num_rows : 0); |
148 | - $this->loggerInstance->debug(5, "At token validation level, " . $certificatesNumber . " certificates exist.\n"); |
|
148 | + $this->loggerInstance->debug(5, "At token validation level, ".$certificatesNumber." certificates exist.\n"); |
|
149 | 149 | // SELECT -> resource, no boolean |
150 | 150 | while ($runner = mysqli_fetch_object(/** @scrutinizer ignore-type */ $certificatesResult)) { |
151 | 151 | $this->associatedCertificates[] = new \core\SilverbulletCertificate($runner->serial_number, $runner->ca_type); |
@@ -204,7 +204,7 @@ discard block |
||
204 | 204 | throw new Exception("Uh. Something went seriously wrong with URL path mangling."); |
205 | 205 | } |
206 | 206 | } |
207 | - $link = $link . $relPath; |
|
207 | + $link = $link.$relPath; |
|
208 | 208 | |
209 | 209 | if (preg_match('/admin$/', $link)) { |
210 | 210 | $link = substr($link, 0, -6); |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | } |
214 | 214 | } |
215 | 215 | |
216 | - return $link . '/accountstatus/accountstatus.php?token=' . $this->invitationTokenString; |
|
216 | + return $link.'/accountstatus/accountstatus.php?token='.$this->invitationTokenString; |
|
217 | 217 | } |
218 | 218 | |
219 | 219 | /** |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | $text .= sprintf(_("A new %s access credential has been created for you by your network administrator."), \config\ConfAssistant::CONSORTIUM['display_name']); |
241 | 241 | $text .= " "; |
242 | 242 | $text .= sprintf(_("Please follow the following link with the device you want to enable for %s to get a custom %s installation program just for you. You can click on the link, copy and paste it into a browser or scan the attached QR code."), \config\ConfAssistant::CONSORTIUM['display_name'], \config\ConfAssistant::CONSORTIUM['display_name']); |
243 | - $text .= "\n\n" . $this->link() . "\n\n"; // gets replaced with the token value by getBody() |
|
243 | + $text .= "\n\n".$this->link()."\n\n"; // gets replaced with the token value by getBody() |
|
244 | 244 | $text .= sprintf(_("Please keep this email or bookmark this link for future use. After picking up your %s installation program, you can use the same link to get status information about your %s account."), \config\ConfAssistant::CONSORTIUM['display_name'], \config\ConfAssistant::CONSORTIUM['display_name']); |
245 | 245 | $text .= "\n\n"; |
246 | 246 | $text .= _("Regards,"); |
@@ -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 | require_once \config\Master::AUTHENTICATION['ssp-path-to-autoloader']; |
24 | 24 | |
25 | 25 | $deco = new \web\lib\admin\PageDecoration(); |
@@ -38,13 +38,13 @@ discard block |
||
38 | 38 | if ($cutoff !== FALSE) { |
39 | 39 | $substring = substr($_SERVER['PHP_SELF'], 0, $cutoff); |
40 | 40 | if ($substring !== FALSE) { |
41 | - $url = "//" . htmlspecialchars($_SERVER['SERVER_NAME']) . $substring; |
|
41 | + $url = "//".htmlspecialchars($_SERVER['SERVER_NAME']).$substring; |
|
42 | 42 | } |
43 | 43 | } |
44 | 44 | header("Location: $url"); |
45 | 45 | } else { |
46 | 46 | /* Logout failed. Tell the user to close the browser. */ |
47 | 47 | echo $deco->pageheader(_("Incomplete Logout"), "ADMIN", FALSE); |
48 | - echo "<p>" . _("We were unable to log you out of all your sessions. To be completely sure that you are logged out, you need to close your web browser.") . "</p>"; |
|
48 | + echo "<p>"._("We were unable to log you out of all your sessions. To be completely sure that you are logged out, you need to close your web browser.")."</p>"; |
|
49 | 49 | echo $deco->footer(); |
50 | 50 | } |
@@ -19,13 +19,13 @@ |
||
19 | 19 | * <base_url>/copyright.php after deploying the software |
20 | 20 | */ |
21 | 21 | |
22 | -$out = "<h3>" . _("Access the sources") . "</h3>" . |
|
23 | - sprintf(_("%s is an opensource project. If you are interested in the details of the implementation, please visit <a href='%s'>GitHub</a>."), \config\Master::APPEARANCE['productname'], "https://github.com/GEANT/CAT" ) . |
|
24 | - "<h3>" . _("Join the developers mailing list.") . "</h3>" . |
|
25 | - sprintf(_("The list is available at: %s"), \config\Master::APPEARANCE['support-contact']['display']) . |
|
26 | - "<h3>" . _("Add a translation") . "</h3>" . |
|
27 | - _("If you would like to add a new language to CAT then please contact us ...") . |
|
28 | - "<h3><a href='" . \core\CAT::getRootUrlPath() . "/apidoc' target='_blank'>". _("Documentation") . "</a></h3>" ; |
|
22 | +$out = "<h3>"._("Access the sources")."</h3>". |
|
23 | + sprintf(_("%s is an opensource project. If you are interested in the details of the implementation, please visit <a href='%s'>GitHub</a>."), \config\Master::APPEARANCE['productname'], "https://github.com/GEANT/CAT"). |
|
24 | + "<h3>"._("Join the developers mailing list.")."</h3>". |
|
25 | + sprintf(_("The list is available at: %s"), \config\Master::APPEARANCE['support-contact']['display']). |
|
26 | + "<h3>"._("Add a translation")."</h3>". |
|
27 | + _("If you would like to add a new language to CAT then please contact us ..."). |
|
28 | + "<h3><a href='".\core\CAT::getRootUrlPath()."/apidoc' target='_blank'>"._("Documentation")."</a></h3>"; |
|
29 | 29 | |
30 | 30 | |
31 | 31 |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | * @package UserGUI |
27 | 27 | */ |
28 | 28 | error_reporting(E_ALL | E_STRICT); |
29 | -require dirname(dirname(__FILE__)) . "/config/_config.php"; |
|
29 | +require dirname(dirname(__FILE__))."/config/_config.php"; |
|
30 | 30 | $langObject = new \core\common\Language(); |
31 | 31 | $langObject->setTextDomain("web_user"); |
32 | 32 | |
@@ -38,25 +38,25 @@ discard block |
||
38 | 38 | <body style='background: #fff url(resources/images/bg_grey_tile.png) repeat-x;'> |
39 | 39 | <div id="heading"> |
40 | 40 | <?php |
41 | - print '<img src="'. dirname($_SERVER['SCRIPT_NAME']) .'/resources/images/consortium_logo.png" alt="Consortium Logo" style="float:right; padding-right:20px; padding-top:20px"/>'; |
|
42 | - print '<div id="motd">' . ( isset(\config\Master::APPEARANCE['MOTD']) ? \config\Master::APPEARANCE['MOTD'] : ' ' ) . '</div>'; |
|
43 | - print '<h1 style="padding-bottom:0px; height:1em;">' . sprintf(_("Welcome to %s"), \config\Master::APPEARANCE['productname']) . '</h1> |
|
44 | -<h2 style="padding-bottom:0px; height:0px; vertical-align:bottom;">' . \config\Master::APPEARANCE['productname_long'] . '</h2>'; |
|
41 | + print '<img src="'.dirname($_SERVER['SCRIPT_NAME']).'/resources/images/consortium_logo.png" alt="Consortium Logo" style="float:right; padding-right:20px; padding-top:20px"/>'; |
|
42 | + print '<div id="motd">'.(isset(\config\Master::APPEARANCE['MOTD']) ? \config\Master::APPEARANCE['MOTD'] : ' ').'</div>'; |
|
43 | + print '<h1 style="padding-bottom:0px; height:1em;">'.sprintf(_("Welcome to %s"), \config\Master::APPEARANCE['productname']).'</h1> |
|
44 | +<h2 style="padding-bottom:0px; height:0px; vertical-align:bottom;">' . \config\Master::APPEARANCE['productname_long'].'</h2>'; |
|
45 | 45 | echo '<table id="lang_select"><tr><td>'; |
46 | 46 | echo _("View this page in"); |
47 | 47 | ?> |
48 | 48 | <?php |
49 | 49 | foreach (\config\Master::LANGUAGES as $lang => $value) { |
50 | - echo "<a href='javascript:changeLang(\"$lang\")'>" . $value['display'] . "</a> "; |
|
50 | + echo "<a href='javascript:changeLang(\"$lang\")'>".$value['display']."</a> "; |
|
51 | 51 | } |
52 | - echo '</td><td style="text-align:right;padding-right:20px"><a href="' . dirname($_SERVER['SCRIPT_NAME']) . '?lang=' . $langObject->getLang() . '">' . _("Start page") . '</a></td></tr></table>'; |
|
52 | + echo '</td><td style="text-align:right;padding-right:20px"><a href="'.dirname($_SERVER['SCRIPT_NAME']).'?lang='.$langObject->getLang().'">'._("Start page").'</a></td></tr></table>'; |
|
53 | 53 | ?> |
54 | 54 | </div> <!-- id="heading" --> |
55 | 55 | <div id="main_body" style='padding:20px;'> |
56 | - <h1><?php echo _("This is not the CAT you are looking for.");?></h1> |
|
57 | - <p><?php echo _("Whatever you expected to see at this URL - it's not here. The only thing here is the number");?></p> |
|
56 | + <h1><?php echo _("This is not the CAT you are looking for."); ?></h1> |
|
57 | + <p><?php echo _("Whatever you expected to see at this URL - it's not here. The only thing here is the number"); ?></p> |
|
58 | 58 | <h2>404</h2> |
59 | - <p><?php echo sprintf(_("staring at you. Your mistake? Our error? Who knows! Maybe you should go back to the <a href='%s'>Start Page</a>."), dirname($_SERVER['SCRIPT_NAME']) . '?lang=' . $langObject->getLang());?></p> |
|
59 | + <p><?php echo sprintf(_("staring at you. Your mistake? Our error? Who knows! Maybe you should go back to the <a href='%s'>Start Page</a>."), dirname($_SERVER['SCRIPT_NAME']).'?lang='.$langObject->getLang()); ?></p> |
|
60 | 60 | </div> <!-- id="main_body" --> |
61 | 61 | |
62 | 62 | <?php echo $deco->footer(); |