@@ -60,11 +60,11 @@ discard block |
||
60 | 60 | $location = $this->Gui->skinObject->findResourceUrl("IMAGES", "consortium_logo.png"); |
61 | 61 | if ($location !== FALSE) { |
62 | 62 | $retval .= "<div id='cat_logo'> |
63 | - <a href='" . \config\ConfAssistant::CONSORTIUM['homepage'] . "'><img id='logo_img' src='$location' alt='Consortium Logo'/></a> |
|
63 | + <a href='" . \config\ConfAssistant::CONSORTIUM['homepage']."'><img id='logo_img' src='$location' alt='Consortium Logo'/></a> |
|
64 | 64 | <span>Configuration Assistant Tool</span> |
65 | 65 | </div>"; |
66 | 66 | } |
67 | - $retval .= "<div id='motd'>" . (isset(\config\Master::APPEARANCE['MOTD']) ? \config\Master::APPEARANCE['MOTD'] : ' ') . "</div>"; |
|
67 | + $retval .= "<div id='motd'>".(isset(\config\Master::APPEARANCE['MOTD']) ? \config\Master::APPEARANCE['MOTD'] : ' ')."</div>"; |
|
68 | 68 | $loc2 = $this->Gui->skinObject->findResourceUrl("IMAGES", "icons/menu.png"); |
69 | 69 | if ($loc2 !== FALSE) { |
70 | 70 | $retval .= "<img id='hamburger' src='$loc2' alt='Menu'/>"; |
@@ -87,13 +87,13 @@ discard block |
||
87 | 87 | public function divUserWelcome() { |
88 | 88 | $retval = " |
89 | 89 | <div id='user_welcome'> <!-- this information is shown just before the download --> |
90 | - <strong>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_PAGEHEADING] . "</strong> |
|
90 | + <strong>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_PAGEHEADING]."</strong> |
|
91 | 91 | <p> |
92 | 92 | <span id='download_info'> |
93 | 93 | <!-- the empty href is dynamically exchanged with the actual path by jQuery at runtime --> |
94 | - " . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_DOWNLOAD] . " |
|
94 | + " . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_DOWNLOAD]." |
|
95 | 95 | </span> |
96 | - <p>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_HEADING] . " |
|
96 | + <p>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_HEADING]." |
|
97 | 97 | <br/> |
98 | 98 | <br/>"; |
99 | 99 | switch (\config\ConfAssistant::CONSORTIUM['name']) { |
@@ -104,12 +104,12 @@ discard block |
||
104 | 104 | } |
105 | 105 | $retval .= " |
106 | 106 | </p> |
107 | - <p>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_USAGE] . " |
|
108 | - <p>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_PROBLEMS] . " |
|
109 | - <p>" . (false ? $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_TERMS] : "") . " |
|
107 | + <p>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_USAGE]." |
|
108 | + <p>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_PROBLEMS]." |
|
109 | + <p>" . (false ? $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_TERMS] : "")." |
|
110 | 110 | </p> |
111 | 111 | <p> |
112 | - <a href='javascript:back_to_downloads()'><strong>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_BACKTODOWNLOADS] . "</strong></a> |
|
112 | + <a href='javascript:back_to_downloads()'><strong>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_BACKTODOWNLOADS]."</strong></a> |
|
113 | 113 | </p> |
114 | 114 | </div> <!-- id='user_welcomer_page' --> |
115 | 115 | "; |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | public function divSilverbullet() { |
125 | 125 | $retval = " |
126 | 126 | <div id='silverbullet'>" |
127 | - . $this->Gui->textTemplates->templates[user\SB_GO_AWAY] . |
|
127 | + . $this->Gui->textTemplates->templates[user\SB_GO_AWAY]. |
|
128 | 128 | "</div> |
129 | 129 | "; |
130 | 130 | return $retval; |
@@ -138,14 +138,14 @@ discard block |
||
138 | 138 | public function divTopWelcome() { |
139 | 139 | $retval = ''; |
140 | 140 | if (\config\ConfAssistant::CONSORTIUM['name'] == "eduroam" && isset(\config\ConfAssistant::CONSORTIUM['deployment-voodoo']) && \config\ConfAssistant::CONSORTIUM['deployment-voodoo'] == "Operations Team") { // SW: APPROVED |
141 | - $retval = "<br><div id='top_invite_ad'>" . $this->Gui->textTemplates->templates[user\FRONTPAGE_EDUROAM_AD] . "</div>"; |
|
141 | + $retval = "<br><div id='top_invite_ad'>".$this->Gui->textTemplates->templates[user\FRONTPAGE_EDUROAM_AD]."</div>"; |
|
142 | 142 | } |
143 | 143 | return " |
144 | 144 | <div id='welcome_top1'> |
145 | - " . $this->Gui->textTemplates->templates[user\HEADING_TOPLEVEL_GREET] . " |
|
145 | + " . $this->Gui->textTemplates->templates[user\HEADING_TOPLEVEL_GREET]." |
|
146 | 146 | </div> |
147 | 147 | <div id='top_invite'> |
148 | - " . $this->Gui->textTemplates->templates[user\HEADING_TOPLEVEL_PURPOSE] . $retval . " |
|
148 | + " . $this->Gui->textTemplates->templates[user\HEADING_TOPLEVEL_PURPOSE].$retval." |
|
149 | 149 | </div>"; |
150 | 150 | } |
151 | 151 | |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | $retval = " |
159 | 159 | <div id='roller'> |
160 | 160 | <div id='slides'> |
161 | - <span id='line1'>" . $this->Gui->textTemplates->templates[user\FRONTPAGE_ROLLER_EASY] . "</span> |
|
161 | + <span id='line1'>" . $this->Gui->textTemplates->templates[user\FRONTPAGE_ROLLER_EASY]."</span> |
|
162 | 162 | <span id='line2'></span> |
163 | 163 | <span id='line3'></span> |
164 | 164 | <span id='line4'>"; |
@@ -220,9 +220,9 @@ discard block |
||
220 | 220 | public function divProfiles() { |
221 | 221 | return " |
222 | 222 | <div id='profiles'> <!-- this is the profile selection filled during run time --> |
223 | - <div id='profiles_h' class='sub_h'>" . $this->Gui->textTemplates->templates[user\PROFILE_SELECTION] . " |
|
223 | + <div id='profiles_h' class='sub_h'>" . $this->Gui->textTemplates->templates[user\PROFILE_SELECTION]." |
|
224 | 224 | </div>" . |
225 | - "<select id='profile_list'></select><div id='profile_desc' class='profile_desc'></div>" . |
|
225 | + "<select id='profile_list'></select><div id='profile_desc' class='profile_desc'></div>". |
|
226 | 226 | "</div>"; |
227 | 227 | } |
228 | 228 | |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | public function divInstitution($selectButton = TRUE) { |
251 | 251 | $retval = "<div id='institution_name'> |
252 | 252 | <span id='inst_name_span'></span> <div id='inst_extra_text'></div><!-- this will be filled with the IdP name -->" . |
253 | - ($selectButton ? "<a id='select_another' class='signin' href=\"\">" . $this->Gui->textTemplates->templates[user\INSTITUTION_SELECTION] . "</a>" : "") . |
|
253 | + ($selectButton ? "<a id='select_another' class='signin' href=\"\">".$this->Gui->textTemplates->templates[user\INSTITUTION_SELECTION]."</a>" : ""). |
|
254 | 254 | "</div>"; |
255 | 255 | $retval .= $this->emptyImage('idp_logo', 'IdP Logo'); |
256 | 256 | return $retval; |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | public function divOtherinstallers() { |
275 | 275 | $retval = " |
276 | 276 | <div class='sub_h'> |
277 | - <div id='other_installers'>" . $this->Gui->textTemplates->templates[user\DOWNLOAD_CHOOSE] . " |
|
277 | + <div id='other_installers'>" . $this->Gui->textTemplates->templates[user\DOWNLOAD_CHOOSE]." |
|
278 | 278 | <table id='device_list' style='padding:0px;'>"; |
279 | 279 | |
280 | 280 | foreach ($this->Gui->listDevices(isset($_REQUEST['hidden']) ? $_REQUEST['hidden'] : 0) as $group => $deviceGroup) { |
@@ -282,18 +282,18 @@ discard block |
||
282 | 282 | $deviceIndex = 0; |
283 | 283 | |
284 | 284 | $imgTag = ""; |
285 | - $imgLocation = $this->Gui->skinObject->findResourceUrl("IMAGES", "vendorlogo/" . $group . ".png"); |
|
285 | + $imgLocation = $this->Gui->skinObject->findResourceUrl("IMAGES", "vendorlogo/".$group.".png"); |
|
286 | 286 | if ($imgLocation !== FALSE) { |
287 | - $imgTag = '<img src="' . $imgLocation . '" alt="' . $group . ' Device" title="' . $group . ' Device">'; |
|
287 | + $imgTag = '<img src="'.$imgLocation.'" alt="'.$group.' Device" title="'.$group.' Device">'; |
|
288 | 288 | } |
289 | - $retval .= '<tbody><tr><td class="vendor" rowspan="' . $groupIndex . '">' . $imgTag . '</td>'; |
|
289 | + $retval .= '<tbody><tr><td class="vendor" rowspan="'.$groupIndex.'">'.$imgTag.'</td>'; |
|
290 | 290 | foreach ($deviceGroup as $d => $D) { |
291 | 291 | if ($deviceIndex) { |
292 | 292 | $retval .= '<tr>'; |
293 | 293 | } |
294 | - $retval .= "<td><button id='" . $d . "'>" . $D['display'] . "</button>" |
|
295 | - . "<div class='device_info' id='info_" . $d . "'></div></td>" |
|
296 | - . "<td><button class='more_info_b' id='info_b_" . $d . "'>i</button></td></tr>\n"; |
|
294 | + $retval .= "<td><button id='".$d."'>".$D['display']."</button>" |
|
295 | + . "<div class='device_info' id='info_".$d."'></div></td>" |
|
296 | + . "<td><button class='more_info_b' id='info_b_".$d."'>i</button></td></tr>\n"; |
|
297 | 297 | $deviceIndex++; |
298 | 298 | } |
299 | 299 | $retval .= "</tbody>"; |
@@ -313,15 +313,15 @@ discard block |
||
313 | 313 | * @return string |
314 | 314 | */ |
315 | 315 | public function divGuessOs($operatingSystem) { |
316 | - $vendorlogo = $this->Gui->skinObject->findResourceUrl("IMAGES", "vendorlogo/" . $operatingSystem['group'] . ".png"); |
|
316 | + $vendorlogo = $this->Gui->skinObject->findResourceUrl("IMAGES", "vendorlogo/".$operatingSystem['group'].".png"); |
|
317 | 317 | $vendorstyle = ""; |
318 | 318 | if ($vendorlogo !== FALSE) { |
319 | - $vendorstyle = "style='background-image:url(\"" . $vendorlogo . "\")'"; |
|
319 | + $vendorstyle = "style='background-image:url(\"".$vendorlogo."\")'"; |
|
320 | 320 | } |
321 | 321 | $deleteIcon = $this->Gui->skinObject->findResourceUrl("IMAGES", "icons/delete_32.png"); |
322 | 322 | $deleteImg = ""; |
323 | 323 | if ($deleteIcon !== FALSE) { |
324 | - $deleteImg = "<img id='cross_icon_" . $operatingSystem['device'] . "' src='$deleteIcon' >"; |
|
324 | + $deleteImg = "<img id='cross_icon_".$operatingSystem['device']."' src='$deleteIcon' >"; |
|
325 | 325 | } |
326 | 326 | return " |
327 | 327 | <div class='sub_h' id='guess_os'> |
@@ -329,23 +329,23 @@ discard block |
||
329 | 329 | <table id='browser'> |
330 | 330 | <tr> |
331 | 331 | <td> |
332 | - <button class='large_button guess_os' $vendorstyle id='g_" . $operatingSystem['device'] . "'> |
|
332 | + <button class='large_button guess_os' $vendorstyle id='g_".$operatingSystem['device']."'> |
|
333 | 333 | $deleteImg |
334 | - <div class='download_button_text_1' id='download_button_header_" . $operatingSystem['device'] . "'> " . $this->Gui->textTemplates->templates[user\DOWNLOAD_MESSAGE] . " |
|
334 | + <div class='download_button_text_1' id='download_button_header_".$operatingSystem['device']."'> ".$this->Gui->textTemplates->templates[user\DOWNLOAD_MESSAGE]." |
|
335 | 335 | </div> |
336 | 336 | <div class='download_button_text'>" . |
337 | - $operatingSystem['display'] . " |
|
337 | + $operatingSystem['display']." |
|
338 | 338 | </div> |
339 | 339 | </button> |
340 | - <div class='device_info' id='info_g_" . $operatingSystem['device'] . "'></div> |
|
340 | + <div class='device_info' id='info_g_" . $operatingSystem['device']."'></div> |
|
341 | 341 | </td> |
342 | 342 | <td style='vertical-align:top'> |
343 | - <button class='more_info_b large_button' id='g_info_b_" . $operatingSystem['device'] . "'>i</button> |
|
343 | + <button class='more_info_b large_button' id='g_info_b_" . $operatingSystem['device']."'>i</button> |
|
344 | 344 | </td> |
345 | 345 | </tr> |
346 | 346 | </table> <!-- id='browser' --> |
347 | 347 | <div class='sub_h'> |
348 | - <a href='javascript:other_installers()'>" . $this->Gui->textTemplates->templates[user\DOWNLOAD_CHOOSE] . "</a> |
|
348 | + <a href='javascript:other_installers()'>" . $this->Gui->textTemplates->templates[user\DOWNLOAD_CHOOSE]."</a> |
|
349 | 349 | </div> |
350 | 350 | </div> <!-- id='guess_os' -->"; |
351 | 351 | } |
@@ -366,7 +366,7 @@ discard block |
||
366 | 366 | </td>"; |
367 | 367 | |
368 | 368 | if (!empty(\config\Master::APPEARANCE['privacy_notice_url'])) { |
369 | - $retval .= "<td><a href='" . \config\Master::APPEARANCE['privacy_notice_url'] . "'>" . sprintf(_("%s Privacy Notice"), \config\ConfAssistant::CONSORTIUM['display_name']) . "</a></td>"; |
|
369 | + $retval .= "<td><a href='".\config\Master::APPEARANCE['privacy_notice_url']."'>".sprintf(_("%s Privacy Notice"), \config\ConfAssistant::CONSORTIUM['display_name'])."</a></td>"; |
|
370 | 370 | } |
371 | 371 | $retval .= "<td>"; |
372 | 372 | if (\config\ConfAssistant::CONSORTIUM['name'] == "eduroam" && isset(\config\ConfAssistant::CONSORTIUM['deployment-voodoo']) && \config\ConfAssistant::CONSORTIUM['deployment-voodoo'] == "Operations Team") { |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | */ |
21 | 21 | |
22 | 22 | $cat = new \web\lib\user\Gui(); |
23 | -$idpId = filter_input(INPUT_GET, 'idp', FILTER_VALIDATE_INT) ?? filter_input(INPUT_POST, 'idp', FILTER_VALIDATE_INT)?? 0; |
|
23 | +$idpId = filter_input(INPUT_GET, 'idp', FILTER_VALIDATE_INT) ?? filter_input(INPUT_POST, 'idp', FILTER_VALIDATE_INT) ?? 0; |
|
24 | 24 | $profileId = filter_input(INPUT_GET, 'profile', FILTER_VALIDATE_INT) ?? filter_input(INPUT_POST, 'profile', FILTER_VALIDATE_INT) ?? 0; |
25 | 25 | $skinObject = $Gui->skinObject; |
26 | 26 | if (\config\ConfAssistant::PRELOAD_IDPS) { |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | otherdata = j.otherdata; |
122 | 122 | if(! result) { |
123 | 123 | alert("<?php $cat->javaScriptEscapedEcho(_("no matching data found"))?>"); |
124 | - document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/') . '/' ?>'; |
|
124 | + document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/').'/' ?>'; |
|
125 | 125 | } |
126 | 126 | j = j.data; |
127 | 127 | n = j.length; |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | result = j1.status; |
259 | 259 | if(! result) { |
260 | 260 | alert("<?php $cat->javaScriptEscapedEcho(_("no matching data found")) ?>"); |
261 | - document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/') . '/' ?>'; |
|
261 | + document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/').'/' ?>'; |
|
262 | 262 | } |
263 | 263 | j = j1.data; |
264 | 264 | if(j.description !== undefined && j.description) { |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | $("#profile_desc").hide(); |
270 | 270 | $("#profile_desc").text(''); |
271 | 271 | } |
272 | - updateTxt = '<span class="user_info"><?php $cat->javaScriptEscapedEcho(_("This entry was last updated at:"));?>'+' '+j.last_changed+'</span><br/>'; |
|
272 | + updateTxt = '<span class="user_info"><?php $cat->javaScriptEscapedEcho(_("This entry was last updated at:")); ?>'+' '+j.last_changed+'</span><br/>'; |
|
273 | 273 | if(j.local_url !== undefined && j.local_url) |
274 | 274 | txt = txt+'<span class="user_info"><?php $cat->javaScriptEscapedEcho(_("WWW:")); ?> <a href="'+j.local_url+'" target="_blank">'+j.local_url+'</a></span><br/>'; |
275 | 275 | if(j.local_email !== undefined && j.local_email) |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | * @return string HTML code <table> |
86 | 86 | */ |
87 | 87 | public function prefilledOptionTable(string $attributePrefix) { |
88 | - $retval = "<table id='expandable_$attributePrefix" . "_options'>"; |
|
88 | + $retval = "<table id='expandable_$attributePrefix"."_options'>"; |
|
89 | 89 | |
90 | 90 | $prepopulate = []; |
91 | 91 | foreach ($this->listOfOptions as $existingAttribute) { |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | $prepopulate[] = $existingAttribute; |
94 | 94 | } |
95 | 95 | } |
96 | - if (is_array($prepopulate) && ( count($prepopulate) > 0 || $attributePrefix == "device-specific" || $attributePrefix == "eap-specific" )) { // editing... fill with values |
|
96 | + if (is_array($prepopulate) && (count($prepopulate) > 0 || $attributePrefix == "device-specific" || $attributePrefix == "eap-specific")) { // editing... fill with values |
|
97 | 97 | $retval .= $this->addOptionEdit($attributePrefix, $prepopulate); |
98 | 98 | } else { |
99 | 99 | $retval .= $this->addOptionNew($attributePrefix); |
@@ -125,7 +125,7 @@ discard block |
||
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 | return $retval; |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | $descriptions["media:force_proxy"] = sprintf(_("The format of this option is: IPv4|IPv6|hostname:port . Forcing your users through a content filter of your own is a significant invasion of user self-determination. It also has technical issues. Please throughly read the discussion at %s before specifying a proxy with this option. This feature is currently experimental and only has an effect in Apple installers."), "https://github.com/GEANT/CAT/issues/96"); |
195 | 195 | $descriptions["managedsp:realmforvlan"] = sprintf(_("If you are also using %s, then your own realm is automatically tagged with the VLAN you choose, there is no need to add it here manually."), \core\ProfileSilverbullet::PRODUCTNAME); |
196 | 196 | $descriptions["media:openroaming"] = |
197 | - sprintf(_("By opting in to OpenRoaming, you agree to be bound by the %s."),"eduroam Ecosystem Broker OpenRoaming Identity Provider Policy"). |
|
197 | + sprintf(_("By opting in to OpenRoaming, you agree to be bound by the %s."), "eduroam Ecosystem Broker OpenRoaming Identity Provider Policy"). |
|
198 | 198 | " ". |
199 | 199 | sprintf(_("Note that your requirement to inform users about the OpenRoaming End User Terms and Conditions is fulfilled when directing your end users to the %s download portal for installer download. Any other means of providing the installers needs to present this information via its own channel."), \config\Master::APPEARANCE['productname']). |
200 | 200 | " ". |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | if (!isset($descriptions[$input])) { |
206 | 206 | return ""; |
207 | 207 | } |
208 | - 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>"; |
|
208 | + 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>"; |
|
209 | 209 | } |
210 | 210 | |
211 | 211 | /** |
@@ -218,18 +218,18 @@ discard block |
||
218 | 218 | */ |
219 | 219 | private function selectElement($rowid, $list) { |
220 | 220 | $jsmagic = "onchange=' |
221 | - if (/#ML#/.test(document.getElementById(\"option-S" . $rowid . "-select\").value)) { |
|
221 | + if (/#ML#/.test(document.getElementById(\"option-S" . $rowid."-select\").value)) { |
|
222 | 222 | document.getElementById(\"S$rowid-input-langselect\").style.display = \"block\"; |
223 | 223 | } else { |
224 | 224 | document.getElementById(\"S$rowid-input-langselect\").style.display = \"none\"; |
225 | 225 | }"; |
226 | 226 | foreach (array_keys(OptionDisplay::HTML_DATATYPE_TEXTS) as $key) { |
227 | - $jsmagic .= "if (/#" . $key . "#/.test(document.getElementById(\"option-S" . $rowid . "-select\").value)) { |
|
228 | - document.getElementById(\"S$rowid-input-file\").style.display = \"" . ($key == \core\Options::TYPECODE_FILE ? "block" : "none") . "\"; |
|
229 | - document.getElementById(\"S$rowid-input-text\").style.display = \"" . ($key == \core\Options::TYPECODE_TEXT ? "block" : "none") . "\"; |
|
230 | - document.getElementById(\"S$rowid-input-string\").style.display = \"" . ($key == \core\Options::TYPECODE_STRING ? "block" : "none") . "\"; |
|
231 | - document.getElementById(\"S$rowid-input-boolean\").style.display = \"" . ($key == \core\Options::TYPECODE_BOOLEAN ? "block" : "none") . "\"; |
|
232 | - document.getElementById(\"S$rowid-input-integer\").style.display = \"" . ($key == \core\Options::TYPECODE_INTEGER ? "block" : "none") . "\"; |
|
227 | + $jsmagic .= "if (/#".$key."#/.test(document.getElementById(\"option-S".$rowid."-select\").value)) { |
|
228 | + document.getElementById(\"S$rowid-input-file\").style.display = \"".($key == \core\Options::TYPECODE_FILE ? "block" : "none")."\"; |
|
229 | + document.getElementById(\"S$rowid-input-text\").style.display = \"".($key == \core\Options::TYPECODE_TEXT ? "block" : "none")."\"; |
|
230 | + document.getElementById(\"S$rowid-input-string\").style.display = \"".($key == \core\Options::TYPECODE_STRING ? "block" : "none")."\"; |
|
231 | + document.getElementById(\"S$rowid-input-boolean\").style.display = \"".($key == \core\Options::TYPECODE_BOOLEAN ? "block" : "none")."\"; |
|
232 | + document.getElementById(\"S$rowid-input-integer\").style.display = \"".($key == \core\Options::TYPECODE_INTEGER ? "block" : "none")."\"; |
|
233 | 233 | } |
234 | 234 | "; |
235 | 235 | // hide all tooltips (each is a <span>, and there are no other <span>s) |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | $value = array_shift($list); |
261 | 261 | $listtype = $optioninfo->optionType($value); |
262 | 262 | $retval .= $uiElements->displayName($value); |
263 | - $retval .= "<input type='hidden' name='option[S$rowid]' value='$value#" . $listtype["type"] . "#" . $listtype["flag"] . "#'/>"; |
|
263 | + $retval .= "<input type='hidden' name='option[S$rowid]' value='$value#".$listtype["type"]."#".$listtype["flag"]."#'/>"; |
|
264 | 264 | $activelisttype = $listtype; |
265 | 265 | $tooltips = $this->tooltip($rowid, $value, TRUE); |
266 | 266 | break; |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | $retval .= "<select id='option-S$rowid-select' name='option[S$rowid]' $jsmagic>"; |
269 | 269 | foreach ($list as $value) { |
270 | 270 | $listtype = $optioninfo->optionType($value); |
271 | - $retval .= "<option id='option-S$rowid-v-$value' value='$value#" . $listtype["type"] . "#" . $listtype["flag"] . "#' "; |
|
271 | + $retval .= "<option id='option-S$rowid-v-$value' value='$value#".$listtype["type"]."#".$listtype["flag"]."#' "; |
|
272 | 272 | if ($iterator == $this->optionIterator) { |
273 | 273 | $retval .= "selected='selected'"; |
274 | 274 | $activelisttype = $listtype; |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | } else { |
277 | 277 | $tooltips .= $this->tooltip($rowid, $value, FALSE); |
278 | 278 | } |
279 | - $retval .= ">" . $uiElements->displayName($value) . "</option>"; |
|
279 | + $retval .= ">".$uiElements->displayName($value)."</option>"; |
|
280 | 280 | $iterator++; |
281 | 281 | } |
282 | 282 | |
@@ -301,9 +301,9 @@ discard block |
||
301 | 301 | */ |
302 | 302 | private function selectLanguage($rowid, $makeVisible) { |
303 | 303 | \core\common\Entity::intoThePotatoes(); |
304 | - $retval = "<select style='display:" . ($makeVisible ? "block" : "none") . "' name='value[S$rowid-lang]' id='S" . $rowid . "-input-langselect'> |
|
305 | - <option value='' name='select_language' selected>" . _("select language") . "</option> |
|
306 | - <option value='C' name='all_languages'>" . _("default/other languages") . "</option>"; |
|
304 | + $retval = "<select style='display:".($makeVisible ? "block" : "none")."' name='value[S$rowid-lang]' id='S".$rowid."-input-langselect'> |
|
305 | + <option value='' name='select_language' selected>" . _("select language")."</option> |
|
306 | + <option value='C' name='all_languages'>" . _("default/other languages")."</option>"; |
|
307 | 307 | foreach (\config\Master::LANGUAGES as $langindex => $possibleLang) { |
308 | 308 | $thislang = $possibleLang['display']; |
309 | 309 | $retval .= "<option value='$langindex' name='$langindex'>$thislang</option>"; |
@@ -331,7 +331,7 @@ discard block |
||
331 | 331 | private function inputFields($rowid, $activetype) { |
332 | 332 | $retval = ""; |
333 | 333 | foreach (OptionDisplay::HTML_DATATYPE_TEXTS as $key => $type) { |
334 | - $retval .= "<" . $type['html'] . " style='display:" . ($activetype['type'] == $key ? "block" : "none") . "' name='value[S$rowid-$key]' id='S" . $rowid . "-input-" . $key . "'" . $type['tail'] . ">"; |
|
334 | + $retval .= "<".$type['html']." style='display:".($activetype['type'] == $key ? "block" : "none")."' name='value[S$rowid-$key]' id='S".$rowid."-input-".$key."'".$type['tail'].">"; |
|
335 | 335 | } |
336 | 336 | return $retval; |
337 | 337 | } |
@@ -346,11 +346,11 @@ discard block |
||
346 | 346 | private function noPrefillText(int $rowid, array $list) { |
347 | 347 | // first column: the <select> element with the names of options and their field-toggling JS magic |
348 | 348 | $selectorInfo = $this->selectElement($rowid, $list); |
349 | - $retval = "<td>" . $selectorInfo["TEXT"] . "</td>"; |
|
349 | + $retval = "<td>".$selectorInfo["TEXT"]."</td>"; |
|
350 | 350 | // second column: the <select> element for language selection - only visible if the active option is multi-lang |
351 | - $retval .= "<td>" . $this->selectLanguage($rowid, $selectorInfo['ACTIVE']['flag'] == "ML") . "</td>"; |
|
351 | + $retval .= "<td>".$this->selectLanguage($rowid, $selectorInfo['ACTIVE']['flag'] == "ML")."</td>"; |
|
352 | 352 | // third column: the actual input fields; the data type of the active option is visible, all others hidden |
353 | - $retval .= "<td>" . $this->inputFields($rowid, $selectorInfo['ACTIVE']) . "</td>"; |
|
353 | + $retval .= "<td>".$this->inputFields($rowid, $selectorInfo['ACTIVE'])."</td>"; |
|
354 | 354 | return $retval; |
355 | 355 | } |
356 | 356 | |
@@ -373,20 +373,20 @@ discard block |
||
373 | 373 | $retval .= "<td>"; |
374 | 374 | $uiElements = new UIElements(); |
375 | 375 | $listtype = $optioninfo->optionType($optionName); |
376 | - $retval .= "<span style='display:flex;'>" . $uiElements->displayName($optionName); |
|
377 | - $retval .= $this->tooltip($rowid, $optionName, TRUE) . "</span>"; |
|
378 | - $retval .= "<input type='hidden' id='option-S$rowid-select' name='option[S$rowid]' value='$optionName#" . $listtype["type"] . "#" . $listtype["flag"] . "#' ></td>"; |
|
376 | + $retval .= "<span style='display:flex;'>".$uiElements->displayName($optionName); |
|
377 | + $retval .= $this->tooltip($rowid, $optionName, TRUE)."</span>"; |
|
378 | + $retval .= "<input type='hidden' id='option-S$rowid-select' name='option[S$rowid]' value='$optionName#".$listtype["type"]."#".$listtype["flag"]."#' ></td>"; |
|
379 | 379 | |
380 | 380 | // language tag if any |
381 | 381 | $retval .= "<td>"; |
382 | 382 | if ($listtype["flag"] == "ML") { |
383 | 383 | |
384 | - $language = "(" . strtoupper($optionLang) . ")"; |
|
384 | + $language = "(".strtoupper($optionLang).")"; |
|
385 | 385 | if ($optionLang == 'C') { |
386 | 386 | $language = _("(default/other languages)"); |
387 | 387 | } |
388 | 388 | $retval .= $language; |
389 | - $retval .= "<input type='hidden' name='value[S$rowid-lang]' id='S" . $rowid . "-input-langselect' value='" . $optionLang . "' style='display:block'>"; |
|
389 | + $retval .= "<input type='hidden' name='value[S$rowid-lang]' id='S".$rowid."-input-langselect' value='".$optionLang."' style='display:block'>"; |
|
390 | 390 | } |
391 | 391 | $retval .= "</td>"; |
392 | 392 | // attribute content |
@@ -396,12 +396,12 @@ discard block |
||
396 | 396 | case \core\Options::TYPECODE_COORDINATES: |
397 | 397 | $this->allLocationCount = $this->allLocationCount + 1; |
398 | 398 | // display of the locations varies by map provider |
399 | - $classname = "\web\lib\admin\Map" . \config\ConfAssistant::MAPPROVIDER['PROVIDER']; |
|
399 | + $classname = "\web\lib\admin\Map".\config\ConfAssistant::MAPPROVIDER['PROVIDER']; |
|
400 | 400 | $link = $classname::optionListDisplayCode($optionValue, $this->allLocationCount); |
401 | - $retval .= "<input readonly style='display:none' type='text' name='value[S$rowid-" . \core\Options::TYPECODE_TEXT . "]' id='S$rowid-input-text' value='$optionValue'>$link"; |
|
401 | + $retval .= "<input readonly style='display:none' type='text' name='value[S$rowid-".\core\Options::TYPECODE_TEXT."]' id='S$rowid-input-text' value='$optionValue'>$link"; |
|
402 | 402 | break; |
403 | 403 | case \core\Options::TYPECODE_FILE: |
404 | - $retval .= "<input readonly type='text' name='value[S$rowid-" . \core\Options::TYPECODE_STRING . "]' id='S" . $rowid . "-input-string' style='display:none' value='" . urlencode($optionValue) . "'>"; |
|
404 | + $retval .= "<input readonly type='text' name='value[S$rowid-".\core\Options::TYPECODE_STRING."]' id='S".$rowid."-input-string' style='display:none' value='".urlencode($optionValue)."'>"; |
|
405 | 405 | $uiElements = new UIElements(); |
406 | 406 | switch ($optionName) { |
407 | 407 | case "eap:ca_file": |
@@ -431,7 +431,7 @@ discard block |
||
431 | 431 | if ($listtype['type'] == \core\Options::TYPECODE_BOOLEAN) {// only modify in this one case |
432 | 432 | $displayedVariant = ($optionValue == "on" ? _("on") : _("off")); |
433 | 433 | } |
434 | - $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'>"; |
|
434 | + $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'>"; |
|
435 | 435 | break; |
436 | 436 | default: |
437 | 437 | // this should never happen! |
@@ -476,10 +476,10 @@ discard block |
||
476 | 476 | <td> |
477 | 477 | <button type='button' class='delete' onclick='"; |
478 | 478 | if ($prefillValue !== NULL && $item == "general:geo_coordinates") { |
479 | - $funcname = "Map" . \config\ConfAssistant::MAPPROVIDER['PROVIDER'] . 'DeleteCoord'; |
|
480 | - $retval .= 'if (typeof ' . $funcname . ' === "function") { ' . $funcname . '(' . $this->allLocationCount . '); } '; |
|
479 | + $funcname = "Map".\config\ConfAssistant::MAPPROVIDER['PROVIDER'].'DeleteCoord'; |
|
480 | + $retval .= 'if (typeof '.$funcname.' === "function") { '.$funcname.'('.$this->allLocationCount.'); } '; |
|
481 | 481 | } |
482 | - $retval .= 'deleteOption("option-S' . $rowid . '")'; |
|
482 | + $retval .= 'deleteOption("option-S'.$rowid.'")'; |
|
483 | 483 | $retval .= "'>-</button> |
484 | 484 | </td> |
485 | 485 | </tr>"; |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | $this->test_result = []; |
130 | 130 | $this->test_result['global'] = 0; |
131 | 131 | // parse the schema file to find out the number of expected rows... |
132 | - $schema = file(dirname(dirname(__FILE__)) . "/schema/schema.sql"); |
|
132 | + $schema = file(dirname(dirname(__FILE__))."/schema/schema.sql"); |
|
133 | 133 | $this->profileOptionCount = 0; |
134 | 134 | $passedTheWindmill = FALSE; |
135 | 135 | foreach ($schema as $schemaLine) { |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | { |
157 | 157 | $this->out[$test] = []; |
158 | 158 | $this->name = $test; |
159 | - $m_name = 'test' . $test; |
|
159 | + $m_name = 'test'.$test; |
|
160 | 160 | $this->test_result[$test] = 0; |
161 | 161 | if (!method_exists($this, $m_name)) { |
162 | 162 | $this->storeTestResult(\core\common\Entity::L_ERROR, "Configuration error, no test configured for <strong>$test</strong>."); |
@@ -269,9 +269,9 @@ discard block |
||
269 | 269 | private function testPhp() |
270 | 270 | { |
271 | 271 | if (version_compare(phpversion(), $this->needversionPHP, '>=')) { |
272 | - $this->storeTestResult(\core\common\Entity::L_OK, "<strong>PHP</strong> is sufficiently recent. You are running " . phpversion() . "."); |
|
272 | + $this->storeTestResult(\core\common\Entity::L_OK, "<strong>PHP</strong> is sufficiently recent. You are running ".phpversion()."."); |
|
273 | 273 | } else { |
274 | - $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>PHP</strong> is too old. We need at least $this->needversionPHP, but you only have " . phpversion() . "."); |
|
274 | + $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>PHP</strong> is too old. We need at least $this->needversionPHP, but you only have ".phpversion()."."); |
|
275 | 275 | } |
276 | 276 | } |
277 | 277 | |
@@ -284,12 +284,12 @@ discard block |
||
284 | 284 | */ |
285 | 285 | private function runConstantsTest($config) |
286 | 286 | { |
287 | - $templateConfig = file_get_contents(ROOT . "/config/$config-template.php"); |
|
288 | - $newTemplateConfig = preg_replace("/class *$config/", "class $config" . "_template", $templateConfig); |
|
289 | - file_put_contents(ROOT . "/var/tmp/$config-template.php", $newTemplateConfig); |
|
290 | - include(ROOT . "/var/tmp/$config-template.php"); |
|
291 | - unlink(ROOT . "/var/tmp/$config-template.php"); |
|
292 | - $rft = new \ReflectionClass("\config\\$config" . "_template"); |
|
287 | + $templateConfig = file_get_contents(ROOT."/config/$config-template.php"); |
|
288 | + $newTemplateConfig = preg_replace("/class *$config/", "class $config"."_template", $templateConfig); |
|
289 | + file_put_contents(ROOT."/var/tmp/$config-template.php", $newTemplateConfig); |
|
290 | + include(ROOT."/var/tmp/$config-template.php"); |
|
291 | + unlink(ROOT."/var/tmp/$config-template.php"); |
|
292 | + $rft = new \ReflectionClass("\config\\$config"."_template"); |
|
293 | 293 | $templateConstants = $rft->getConstants(); |
294 | 294 | $failResults = []; |
295 | 295 | foreach ($templateConstants as $constant => $value) { |
@@ -306,7 +306,7 @@ discard block |
||
306 | 306 | * Check if all required constants are set |
307 | 307 | */ |
308 | 308 | private function testConfigConstants() { |
309 | - set_error_handler(function ($severity, $message, $file, $line) { |
|
309 | + set_error_handler(function($severity, $message, $file, $line) { |
|
310 | 310 | throw new \ErrorException($message, $severity, $severity, $file, $line); |
311 | 311 | }); |
312 | 312 | |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | $failCount = $failCount + count($failResults); |
318 | 318 | if (count($failResults) > 0) { |
319 | 319 | $this->storeTestResult(\core\common\Entity::L_ERROR, |
320 | - "<strong>The following constants are not set:</strong>" . implode(', ', $failResults)); |
|
320 | + "<strong>The following constants are not set:</strong>".implode(', ', $failResults)); |
|
321 | 321 | } |
322 | 322 | } |
323 | 323 | |
@@ -341,7 +341,7 @@ discard block |
||
341 | 341 | $this->storeTestResult(\core\common\Entity::L_OK, "<strong>cat_base_url</strong> set correctly"); |
342 | 342 | } else { |
343 | 343 | $rootFromScript = $m[1] === '' ? '/' : $m[1]; |
344 | - $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>cat_base_url</strong> is set to <strong>" . \config\Master::PATHS['cat_base_url'] . "</strong> and should be <strong>$rootFromScript</strong>"); |
|
344 | + $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>cat_base_url</strong> is set to <strong>".\config\Master::PATHS['cat_base_url']."</strong> and should be <strong>$rootFromScript</strong>"); |
|
345 | 345 | } |
346 | 346 | } |
347 | 347 | |
@@ -362,7 +362,7 @@ discard block |
||
362 | 362 | if (count($probeReturns) == 0) { |
363 | 363 | $this->storeTestResult(common\Entity::L_OK, "All configured RADIUS/UDP probes are reachable."); |
364 | 364 | } else { |
365 | - $this->storeTestResult(common\Entity::L_ERROR, "The following RADIUS probes are NOT reachable: " . implode(', ', $probeReturns)); |
|
365 | + $this->storeTestResult(common\Entity::L_ERROR, "The following RADIUS probes are NOT reachable: ".implode(', ', $probeReturns)); |
|
366 | 366 | } |
367 | 367 | } |
368 | 368 | |
@@ -380,9 +380,9 @@ discard block |
||
380 | 380 | $SSPconfig = \SimpleSAML\Configuration::getInstance(); |
381 | 381 | $sspVersion = explode('.', $SSPconfig->getVersion()); |
382 | 382 | if ((int) $sspVersion[0] >= $this->needversionSSP['major'] && (int) $sspVersion[1] >= $this->needversionSSP['minor']) { |
383 | - $this->storeTestResult(\core\common\Entity::L_OK, "<strong>simpleSAMLphp</strong> is sufficently recent. You are running " . implode('.', $sspVersion)); |
|
383 | + $this->storeTestResult(\core\common\Entity::L_OK, "<strong>simpleSAMLphp</strong> is sufficently recent. You are running ".implode('.', $sspVersion)); |
|
384 | 384 | } else { |
385 | - $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>simpleSAMLphp</strong> is too old. We need at least " . implode('.', $this->needversionSSP)); |
|
385 | + $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>simpleSAMLphp</strong> is too old. We need at least ".implode('.', $this->needversionSSP)); |
|
386 | 386 | } |
387 | 387 | } |
388 | 388 | } |
@@ -440,8 +440,8 @@ discard block |
||
440 | 440 | */ |
441 | 441 | private function testLogdir() |
442 | 442 | { |
443 | - if (fopen(\config\Master::PATHS['logdir'] . "/debug.log", "a") == FALSE) { |
|
444 | - $this->storeTestResult(\core\common\Entity::L_WARN, "Log files in <strong>" . \config\Master::PATHS['logdir'] . "</strong> are not writable!"); |
|
443 | + if (fopen(\config\Master::PATHS['logdir']."/debug.log", "a") == FALSE) { |
|
444 | + $this->storeTestResult(\core\common\Entity::L_WARN, "Log files in <strong>".\config\Master::PATHS['logdir']."</strong> are not writable!"); |
|
445 | 445 | } else { |
446 | 446 | $this->storeTestResult(\core\common\Entity::L_OK, "Log directory is writable."); |
447 | 447 | } |
@@ -473,7 +473,7 @@ discard block |
||
473 | 473 | } |
474 | 474 | |
475 | 475 | $classname = 'Imagick'; |
476 | - if (class_exists('\\' . $classname)) { |
|
476 | + if (class_exists('\\'.$classname)) { |
|
477 | 477 | $this->storeTestResult(\core\common\Entity::L_OK, "PHP extension <strong>Imagick</strong> is installed."); |
478 | 478 | } else { |
479 | 479 | $this->storeTestResult(\core\common\Entity::L_ERROR, "PHP extension <strong>Imagick</strong> not found! Get it from your distribution or <a href='http://pecl.php.net/package/imagick'>here</a>."); |
@@ -569,7 +569,7 @@ discard block |
||
569 | 569 | { |
570 | 570 | $A = $this->getExecPath('openssl'); |
571 | 571 | if ($A['exec'] != "") { |
572 | - $t = exec($A['exec'] . ' version'); |
|
572 | + $t = exec($A['exec'].' version'); |
|
573 | 573 | if ($A['exec_is'] == "EXPLICIT") { |
574 | 574 | $this->storeTestResult(\core\common\Entity::L_OK, "<strong>$t</strong> was found and is configured explicitly in your config."); |
575 | 575 | } else { |
@@ -597,14 +597,14 @@ discard block |
||
597 | 597 | } |
598 | 598 | $A = $this->getExecPath('makensis'); |
599 | 599 | if ($A['exec'] != "") { |
600 | - $t = exec($A['exec'] . ' -VERSION'); |
|
600 | + $t = exec($A['exec'].' -VERSION'); |
|
601 | 601 | if ($A['exec_is'] == "EXPLICIT") { |
602 | 602 | $this->storeTestResult(\core\common\Entity::L_OK, "<strong>makensis $t</strong> was found and is configured explicitly in your config."); |
603 | 603 | } else { |
604 | 604 | $this->storeTestResult(\core\common\Entity::L_WARN, "<strong>makensis $t</strong> was found, but is not configured with an absolute path in your config."); |
605 | 605 | } |
606 | 606 | $outputArray = []; |
607 | - exec($A['exec'] . ' -HELP', $outputArray); |
|
607 | + exec($A['exec'].' -HELP', $outputArray); |
|
608 | 608 | $t1 = count(preg_grep('/INPUTCHARSET/', $outputArray)); |
609 | 609 | if ($t1 == 1 && \config\ConfAssistant::NSIS_VERSION == 2) { |
610 | 610 | $this->storeTestResult(\core\common\Entity::L_ERROR, "Declared NSIS_VERSION does not seem to match the file pointed to by PATHS['makensis']!"); |
@@ -634,7 +634,7 @@ discard block |
||
634 | 634 | $NSIS_Module_status = []; |
635 | 635 | foreach ($this->NSISModules as $module) { |
636 | 636 | unset($out); |
637 | - exec(\config\ConfAssistant::PATHS['makensis'] . " -V1 '-X!include $module' '-XOutFile $exe' '-XSection X' '-XSectionEnd'", $out, $retval); |
|
637 | + exec(\config\ConfAssistant::PATHS['makensis']." -V1 '-X!include $module' '-XOutFile $exe' '-XSection X' '-XSectionEnd'", $out, $retval); |
|
638 | 638 | if ($retval > 0) { |
639 | 639 | $NSIS_Module_status[$module] = 0; |
640 | 640 | } else { |
@@ -701,8 +701,8 @@ discard block |
||
701 | 701 | $locales = shell_exec("locale -a"); |
702 | 702 | $allthere = ""; |
703 | 703 | foreach (\config\Master::LANGUAGES as $onelanguage) { |
704 | - if (preg_match("/" . $onelanguage['locale'] . "/", $locales) == 0) { |
|
705 | - $allthere .= $onelanguage['locale'] . " "; |
|
704 | + if (preg_match("/".$onelanguage['locale']."/", $locales) == 0) { |
|
705 | + $allthere .= $onelanguage['locale']." "; |
|
706 | 706 | } |
707 | 707 | } |
708 | 708 | if ($allthere == "") { |
@@ -716,47 +716,47 @@ discard block |
||
716 | 716 | ["SETTING" => \config\Master::APPEARANCE['from-mail'], |
717 | 717 | "DEFVALUE" => "[email protected]", |
718 | 718 | "COMPLAINTSTRING" => "APPEARANCE/from-mail ", |
719 | - "REQUIRED" => FALSE,], |
|
719 | + "REQUIRED" => FALSE, ], |
|
720 | 720 | ["SETTING" => \config\Master::APPEARANCE['support-contact']['url'], |
721 | 721 | "DEFVALUE" => "[email protected]?body=Only%20English%20language%20please!", |
722 | 722 | "COMPLAINTSTRING" => "APPEARANCE/support-contact/url ", |
723 | - "REQUIRED" => FALSE,], |
|
723 | + "REQUIRED" => FALSE, ], |
|
724 | 724 | ["SETTING" => \config\Master::APPEARANCE['support-contact']['display'], |
725 | 725 | "DEFVALUE" => "[email protected]", |
726 | 726 | "COMPLAINTSTRING" => "APPEARANCE/support-contact/display ", |
727 | - "REQUIRED" => FALSE,], |
|
727 | + "REQUIRED" => FALSE, ], |
|
728 | 728 | ["SETTING" => \config\Master::APPEARANCE['support-contact']['developer-mail'], |
729 | 729 | "DEFVALUE" => "[email protected]", |
730 | 730 | "COMPLAINTSTRING" => "APPEARANCE/support-contact/mail ", |
731 | - "REQUIRED" => FALSE,], |
|
731 | + "REQUIRED" => FALSE, ], |
|
732 | 732 | ["SETTING" => \config\Master::APPEARANCE['abuse-mail'], |
733 | 733 | "DEFVALUE" => "[email protected]", |
734 | 734 | "COMPLAINTSTRING" => "APPEARANCE/abuse-mail ", |
735 | - "REQUIRED" => FALSE,], |
|
735 | + "REQUIRED" => FALSE, ], |
|
736 | 736 | ["SETTING" => \config\Master::APPEARANCE['MOTD'], |
737 | 737 | "DEFVALUE" => "Release Candidate. All bugs to be shot on sight!", |
738 | 738 | "COMPLAINTSTRING" => "APPEARANCE/MOTD ", |
739 | - "REQUIRED" => FALSE,], |
|
739 | + "REQUIRED" => FALSE, ], |
|
740 | 740 | ["SETTING" => \config\Master::APPEARANCE['webcert_CRLDP'], |
741 | 741 | "DEFVALUE" => ['list', 'of', 'CRL', 'pointers'], |
742 | 742 | "COMPLAINTSTRING" => "APPEARANCE/webcert_CRLDP ", |
743 | - "REQUIRED" => TRUE,], |
|
743 | + "REQUIRED" => TRUE, ], |
|
744 | 744 | ["SETTING" => \config\Master::APPEARANCE['webcert_OCSP'], |
745 | 745 | "DEFVALUE" => ['list', 'of', 'OCSP', 'pointers'], |
746 | 746 | "COMPLAINTSTRING" => "APPEARANCE/webcert_OCSP ", |
747 | - "REQUIRED" => TRUE,], |
|
747 | + "REQUIRED" => TRUE, ], |
|
748 | 748 | ["SETTING" => \config\Master::DB['INST']['host'], |
749 | 749 | "DEFVALUE" => "db.host.example", |
750 | 750 | "COMPLAINTSTRING" => "DB/INST ", |
751 | - "REQUIRED" => TRUE,], |
|
751 | + "REQUIRED" => TRUE, ], |
|
752 | 752 | ["SETTING" => \config\Master::DB['INST']['host'], |
753 | 753 | "DEFVALUE" => "db.host.example", |
754 | 754 | "COMPLAINTSTRING" => "DB/USER ", |
755 | - "REQUIRED" => TRUE,], |
|
755 | + "REQUIRED" => TRUE, ], |
|
756 | 756 | ["SETTING" => \config\Master::DB['EXTERNAL']['host'], |
757 | 757 | "DEFVALUE" => "customerdb.otherhost.example", |
758 | 758 | "COMPLAINTSTRING" => "DB/EXTERNAL ", |
759 | - "REQUIRED" => FALSE,], |
|
759 | + "REQUIRED" => FALSE, ], |
|
760 | 760 | ]; |
761 | 761 | |
762 | 762 | /** |
@@ -785,11 +785,11 @@ discard block |
||
785 | 785 | if (isset(\config\Diagnostics::RADIUSTESTS['TLS-clientcerts'])) { |
786 | 786 | foreach (\config\Diagnostics::RADIUSTESTS['TLS-clientcerts'] as $cadata) { |
787 | 787 | foreach ($cadata['certificates'] as $cert_files) { |
788 | - if (file_get_contents(ROOT . "/config/cli-certs/" . $cert_files['public']) === FALSE) { |
|
789 | - $defaultvalues .= "CERTIFICATE/" . $cert_files['public'] . " "; |
|
788 | + if (file_get_contents(ROOT."/config/cli-certs/".$cert_files['public']) === FALSE) { |
|
789 | + $defaultvalues .= "CERTIFICATE/".$cert_files['public']." "; |
|
790 | 790 | } |
791 | - if (file_get_contents(ROOT . "/config/cli-certs/" . $cert_files['private']) === FALSE) { |
|
792 | - $defaultvalues .= "CERTIFICATE/" . $cert_files['private'] . " "; |
|
791 | + if (file_get_contents(ROOT."/config/cli-certs/".$cert_files['private']) === FALSE) { |
|
792 | + $defaultvalues .= "CERTIFICATE/".$cert_files['private']." "; |
|
793 | 793 | } |
794 | 794 | } |
795 | 795 | } |
@@ -882,14 +882,14 @@ discard block |
||
882 | 882 | if ($global_no_cache) { |
883 | 883 | foreach ($Devs as $dev => $D) { |
884 | 884 | if (empty($D['options']['no_cache']) || $D['options']['no_cache'] != 0) { |
885 | - $no_cache_dev .= $dev . " "; |
|
885 | + $no_cache_dev .= $dev." "; |
|
886 | 886 | $no_cache_dev_count++; |
887 | 887 | } |
888 | 888 | } |
889 | 889 | } else { |
890 | 890 | foreach ($Devs as $dev => $D) { |
891 | 891 | if (!empty($D['options']['no_cache']) && $D['options']['no_cache'] != 0) { |
892 | - $no_cache_dev .= $dev . " "; |
|
892 | + $no_cache_dev .= $dev." "; |
|
893 | 893 | $no_cache_dev_count++; |
894 | 894 | } |
895 | 895 | } |
@@ -928,13 +928,13 @@ discard block |
||
928 | 928 | $mail->isHTML(FALSE); |
929 | 929 | $mail->CharSet = 'UTF-8'; |
930 | 930 | $mail->From = \config\Master::APPEARANCE['from-mail']; |
931 | - $mail->FromName = \config\Master::APPEARANCE['productname'] . " Invitation System"; |
|
931 | + $mail->FromName = \config\Master::APPEARANCE['productname']." Invitation System"; |
|
932 | 932 | $mail->addAddress(\config\Master::APPEARANCE['abuse-mail']); |
933 | 933 | $mail->Subject = "testing CAT configuration mail"; |
934 | 934 | $mail->Body = "Testing CAT mailing\n"; |
935 | 935 | $sent = $mail->send(); |
936 | 936 | if ($sent) { |
937 | - $this->storeTestResult(\core\common\Entity::L_OK, "mailer settings appear to be working, check " . \config\Master::APPEARANCE['abuse-mail'] . " mailbox if the message was receiced."); |
|
937 | + $this->storeTestResult(\core\common\Entity::L_OK, "mailer settings appear to be working, check ".\config\Master::APPEARANCE['abuse-mail']." mailbox if the message was receiced."); |
|
938 | 938 | } else { |
939 | 939 | $this->storeTestResult(\core\common\Entity::L_ERROR, "mailer settings failed, check the Config::MAILSETTINGS"); |
940 | 940 | } |
@@ -105,9 +105,9 @@ discard block |
||
105 | 105 | |
106 | 106 | $attributesLowLevel = array_merge($this->deviceLevelAttributes, $this->eapLevelAttributes); |
107 | 107 | |
108 | - $this->loggerInstance->debug(5, "Device-Level Attributes: " . print_r($this->deviceLevelAttributes, true)); |
|
109 | - $this->loggerInstance->debug(5, "EAP-Level Attributes: " . print_r($this->eapLevelAttributes, true)); |
|
110 | - $this->loggerInstance->debug(5, "All low-Level Attributes: " . print_r($attributesLowLevel, true)); |
|
108 | + $this->loggerInstance->debug(5, "Device-Level Attributes: ".print_r($this->deviceLevelAttributes, true)); |
|
109 | + $this->loggerInstance->debug(5, "EAP-Level Attributes: ".print_r($this->eapLevelAttributes, true)); |
|
110 | + $this->loggerInstance->debug(5, "All low-Level Attributes: ".print_r($attributesLowLevel, true)); |
|
111 | 111 | |
112 | 112 | // now fetch and merge profile-level attributes if not already set on deeper level |
113 | 113 | |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | } |
138 | 138 | } |
139 | 139 | |
140 | - $this->loggerInstance->debug(5, "Merged Attributes: " . print_r($attributesLowLevel, true)); |
|
140 | + $this->loggerInstance->debug(5, "Merged Attributes: ".print_r($attributesLowLevel, true)); |
|
141 | 141 | |
142 | 142 | // now, fetch and merge IdP-wide attributes |
143 | 143 | |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | // add the internal attribute to that effect |
153 | 153 | |
154 | 154 | if (isset($this->attributes['media:openroaming_always'])) { |
155 | - $this->attributes = array_merge($this->attributes, $this->addInternalAttributes([ "internal:openroaming" => TRUE ] )); |
|
155 | + $this->attributes = array_merge($this->attributes, $this->addInternalAttributes(["internal:openroaming" => TRUE])); |
|
156 | 156 | } |
157 | 157 | |
158 | 158 | $this->loggerInstance->debug(3, "--- END Constructing new Profile object ... ---\n"); |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | "row" => $attributeQuery->row, |
201 | 201 | "flag" => $optinfo['flag'], |
202 | 202 | "device" => ($devicesOrEAPMethods == "DEVICES" ? $attributeQuery->deviceormethod : NULL), |
203 | - "eapmethod" => ($devicesOrEAPMethods == "DEVICES" ? 0 : (new \core\common\EAP($attributeQuery->deviceormethod))->getArrayRep() )]; |
|
203 | + "eapmethod" => ($devicesOrEAPMethods == "DEVICES" ? 0 : (new \core\common\EAP($attributeQuery->deviceormethod))->getArrayRep())]; |
|
204 | 204 | } |
205 | 205 | return $temparray; |
206 | 206 | } |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | */ |
310 | 310 | public function setAnonymousIDSupport($shallwe) |
311 | 311 | { |
312 | - $this->databaseHandle->exec("UPDATE profile SET use_anon_outer = " . ($shallwe === true ? "1" : "0") . " WHERE profile_id = $this->identifier"); |
|
312 | + $this->databaseHandle->exec("UPDATE profile SET use_anon_outer = ".($shallwe === true ? "1" : "0")." WHERE profile_id = $this->identifier"); |
|
313 | 313 | } |
314 | 314 | |
315 | 315 | /** Toggle special username for realm checks |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | * @return void |
320 | 320 | */ |
321 | 321 | public function setRealmCheckUser($shallwe, $localpart = NULL) { |
322 | - $this->databaseHandle->exec("UPDATE profile SET checkuser_outer = " . ($shallwe === true ? "1" : "0") . " WHERE profile_id = $this->identifier"); |
|
322 | + $this->databaseHandle->exec("UPDATE profile SET checkuser_outer = ".($shallwe === true ? "1" : "0")." WHERE profile_id = $this->identifier"); |
|
323 | 323 | if ($localpart !== NULL) { |
324 | 324 | $this->databaseHandle->exec("UPDATE profile SET checkuser_value = ? WHERE profile_id = $this->identifier", "s", $localpart); |
325 | 325 | } |
@@ -334,8 +334,8 @@ discard block |
||
334 | 334 | */ |
335 | 335 | public function setInputVerificationPreference($verify, $hint) |
336 | 336 | { |
337 | - $this->databaseHandle->exec("UPDATE profile SET verify_userinput_suffix = " . ($verify === true ? "1" : "0") . |
|
338 | - ", hint_userinput_suffix = " . ($hint === true ? "1" : "0") . |
|
337 | + $this->databaseHandle->exec("UPDATE profile SET verify_userinput_suffix = ".($verify === true ? "1" : "0"). |
|
338 | + ", hint_userinput_suffix = ".($hint === true ? "1" : "0"). |
|
339 | 339 | " WHERE profile_id = $this->identifier"); |
340 | 340 | } |
341 | 341 |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | ], |
93 | 93 | 'condition' => TRUE], |
94 | 94 | 'OpenRoaming®' => [ |
95 | - 'ssid' => [], /* OpenRoaming has left SSIDs behind */ |
|
95 | + 'ssid' => [], /* OpenRoaming has left SSIDs behind */ |
|
96 | 96 | 'oi' => [ |
97 | 97 | '5A03BA0000', /* OpenRoaming/AllIdentities/SettlementFree/NoPersonalData/BaselineQoS */ |
98 | 98 | '5A03BA0800', /* OpenRoaming/EduIdentities/SettlementFree/NoPersonalData/BaselineQoS */ |
@@ -186,13 +186,13 @@ discard block |
||
186 | 186 | 'db' => 'radacct', |
187 | 187 | 'user' => 'someuser', |
188 | 188 | 'pass' => 'somepass', |
189 | - 'readonly' => TRUE,], |
|
189 | + 'readonly' => TRUE, ], |
|
190 | 190 | 'RADIUS_2' => [ |
191 | 191 | 'host' => 'auth-2.hosted.eduroam.org', |
192 | 192 | 'db' => 'radacct', |
193 | 193 | 'user' => 'someuser', |
194 | 194 | 'pass' => 'somepass', |
195 | - 'readonly' => TRUE,], |
|
195 | + 'readonly' => TRUE, ], |
|
196 | 196 | ]; |
197 | 197 | |
198 | 198 | /** |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | sprintf(_("%s: Do not terminate EAP"), \core\ProfileSilverbullet::PRODUCTNAME) => "fed:silverbullet-noterm", |
137 | 137 | sprintf(_("%s: max users per profile"), \core\ProfileSilverbullet::PRODUCTNAME) => "fed:silverbullet-maxusers", |
138 | 138 | sprintf(_("Mint %s with CA on creation"), $this->nomenclatureInst) => "fed:minted_ca_file", |
139 | - sprintf(_("OpenRoaming: Allow %s Opt-In"),$this->nomenclatureParticipant) => "fed:openroaming", |
|
139 | + sprintf(_("OpenRoaming: Allow %s Opt-In"), $this->nomenclatureParticipant) => "fed:openroaming", |
|
140 | 140 | _("OpenRoaming: Custom NAPTR Target") => "fed:openroaming_customtarget", |
141 | 141 | $ssidText => "media:SSID", |
142 | 142 | $passpointOiText => "media:consortium_OI", |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | $find = array_keys($displayNames, $input, TRUE); |
149 | 149 | |
150 | 150 | if (count($find) == 0) { // this is an error! throw an Exception |
151 | - throw new \Exception("The translation of an option name was requested, but the option is not known to the system: " . htmlentities($input)); |
|
151 | + throw new \Exception("The translation of an option name was requested, but the option is not known to the system: ".htmlentities($input)); |
|
152 | 152 | } |
153 | 153 | \core\common\Entity::outOfThePotatoes(); |
154 | 154 | return $find[0]; |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | |
170 | 170 | foreach ($optionlist as $option) { |
171 | 171 | $type = $optioninfo->optionType($option['name']); |
172 | - if (preg_match('/^' . $class . '/', $option['name']) && $option['level'] == "$level") { |
|
172 | + if (preg_match('/^'.$class.'/', $option['name']) && $option['level'] == "$level") { |
|
173 | 173 | // all non-multilang attribs get this assignment ... |
174 | 174 | $language = ""; |
175 | 175 | $content = $option['value']; |
@@ -187,19 +187,19 @@ discard block |
||
187 | 187 | $locationMarkers[] = $coords; |
188 | 188 | break; |
189 | 189 | case "file": |
190 | - $retval .= "<tr><td>" . $this->displayName($option['name']) . "</td><td>$language</td><td>"; |
|
190 | + $retval .= "<tr><td>".$this->displayName($option['name'])."</td><td>$language</td><td>"; |
|
191 | 191 | switch ($option['name']) { |
192 | 192 | case "general:logo_file": |
193 | 193 | case "fed:logo_file": |
194 | - $retval .= $this->previewImageinHTML('ROWID-' . $option['level'] . '-' . $option['row']); |
|
194 | + $retval .= $this->previewImageinHTML('ROWID-'.$option['level'].'-'.$option['row']); |
|
195 | 195 | break; |
196 | 196 | case "eap:ca_file": |
197 | 197 | // fall-through intended: display both the same way |
198 | 198 | case "fed:minted_ca_file": |
199 | - $retval .= $this->previewCAinHTML('ROWID-' . $option['level'] . '-' . $option['row']); |
|
199 | + $retval .= $this->previewCAinHTML('ROWID-'.$option['level'].'-'.$option['row']); |
|
200 | 200 | break; |
201 | 201 | case "support:info_file": |
202 | - $retval .= $this->previewInfoFileinHTML('ROWID-' . $option['level'] . '-' . $option['row']); |
|
202 | + $retval .= $this->previewInfoFileinHTML('ROWID-'.$option['level'].'-'.$option['row']); |
|
203 | 203 | break; |
204 | 204 | default: |
205 | 205 | } |
@@ -209,10 +209,10 @@ discard block |
||
209 | 209 | // do not display the option at all; it gets auto-set by the ProfileSilverbullet constructor and doesn't have to be seen |
210 | 210 | break; |
211 | 211 | } |
212 | - $retval .= "<tr><td>" . $this->displayName($option['name']) . "</td><td>$language</td><td><strong>" . ($content == "on" ? _("on") : _("off") ) . "</strong></td></tr>"; |
|
212 | + $retval .= "<tr><td>".$this->displayName($option['name'])."</td><td>$language</td><td><strong>".($content == "on" ? _("on") : _("off"))."</strong></td></tr>"; |
|
213 | 213 | break; |
214 | 214 | default: |
215 | - $retval .= "<tr><td>" . $this->displayName($option['name']) . "</td><td>$language</td><td><strong>$content</strong></td></tr>"; |
|
215 | + $retval .= "<tr><td>".$this->displayName($option['name'])."</td><td>$language</td><td><strong>$content</strong></td></tr>"; |
|
216 | 216 | } |
217 | 217 | } |
218 | 218 | } |
@@ -221,11 +221,11 @@ discard block |
||
221 | 221 | $locationCount = 0; |
222 | 222 | foreach ($locationMarkers as $g) { |
223 | 223 | $locationCount++; |
224 | - $marker .= '<marker name="' . $locationCount . '" lat="' . $g['lat'] . '" lng="' . $g['lon'] . '" />'; |
|
224 | + $marker .= '<marker name="'.$locationCount.'" lat="'.$g['lat'].'" lng="'.$g['lon'].'" />'; |
|
225 | 225 | } |
226 | 226 | $marker .= '<\/markers>'; // some validator says this should be escaped |
227 | 227 | $jMarker = json_encode($locationMarkers); |
228 | - $retval .= '<tr><td><script>markers=\'' . $marker . '\'; jmarkers = \'' . $jMarker . '\';</script></td><td></td><td></td></tr>'; |
|
228 | + $retval .= '<tr><td><script>markers=\''.$marker.'\'; jmarkers = \''.$jMarker.'\';</script></td><td></td><td></td></tr>'; |
|
229 | 229 | } |
230 | 230 | \core\common\Entity::outOfThePotatoes(); |
231 | 231 | return $retval; |
@@ -241,11 +241,11 @@ discard block |
||
241 | 241 | \core\common\Entity::intoThePotatoes(); |
242 | 242 | $idpoptions = $myInst->getAttributes(); |
243 | 243 | $retval = "<div class='infobox'> |
244 | - <h2>" . sprintf(_("General %s details"), $this->nomenclatureInst) . "</h2> |
|
244 | + <h2>" . sprintf(_("General %s details"), $this->nomenclatureInst)."</h2> |
|
245 | 245 | <table> |
246 | 246 | <tr> |
247 | 247 | <td> |
248 | - " . _("Country:") . " |
|
248 | + " . _("Country:")." |
|
249 | 249 | </td> |
250 | 250 | <td> |
251 | 251 | </td> |
@@ -255,16 +255,16 @@ discard block |
||
255 | 255 | $retval .= $myFed->name; |
256 | 256 | $retval .= "</strong> |
257 | 257 | </td> |
258 | - </tr>" . $this->infoblock($idpoptions, "general", "IdP") . " |
|
258 | + </tr>" . $this->infoblock($idpoptions, "general", "IdP")." |
|
259 | 259 | </table> |
260 | 260 | </div>"; |
261 | 261 | |
262 | 262 | $blocks = [["support", _("Global Helpdesk Details")], ["media", _("Media Properties")]]; |
263 | 263 | foreach ($blocks as $block) { |
264 | 264 | $retval .= "<div class='infobox'> |
265 | - <h2>" . $block[1] . "</h2> |
|
265 | + <h2>" . $block[1]."</h2> |
|
266 | 266 | <table>" . |
267 | - $this->infoblock($idpoptions, $block[0], "IdP") . |
|
267 | + $this->infoblock($idpoptions, $block[0], "IdP"). |
|
268 | 268 | "</table> |
269 | 269 | </div>"; |
270 | 270 | } |
@@ -279,12 +279,12 @@ discard block |
||
279 | 279 | */ |
280 | 280 | private function displaySize(int $number) { |
281 | 281 | if ($number > 1024 * 1024) { |
282 | - return round($number / 1024 / 1024, 2) . " MiB"; |
|
282 | + return round($number / 1024 / 1024, 2)." MiB"; |
|
283 | 283 | } |
284 | 284 | if ($number > 1024) { |
285 | - return round($number / 1024, 2) . " KiB"; |
|
285 | + return round($number / 1024, 2)." KiB"; |
|
286 | 286 | } |
287 | - return $number . " B"; |
|
287 | + return $number." B"; |
|
288 | 288 | } |
289 | 289 | |
290 | 290 | /** |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | $ref = $validator->databaseReference($cAReference); |
339 | 339 | $rawResult = UIElements::getBlobFromDB($ref['table'], $ref['rowindex'], FALSE); |
340 | 340 | if (is_bool($rawResult)) { // we didn't actually get a CA! |
341 | - $retval = "<div class='ca-summary'>" . _("There was an error while retrieving the certificate from the database!") . "</div>"; |
|
341 | + $retval = "<div class='ca-summary'>"._("There was an error while retrieving the certificate from the database!")."</div>"; |
|
342 | 342 | \core\common\Entity::outOfThePotatoes(); |
343 | 343 | return $retval; |
344 | 344 | } |
@@ -354,14 +354,14 @@ discard block |
||
354 | 354 | |
355 | 355 | $details['name'] = preg_replace('/(.)\/(.)/', "$1<br/>$2", $details['name']); |
356 | 356 | $details['name'] = preg_replace('/\//', "", $details['name']); |
357 | - $certstatus = ( $details['root'] == 1 ? "R" : "I"); |
|
358 | - $certTooltip = ( $details['root'] == 1 ? _("Root CA") : _("Intermediate CA")); |
|
357 | + $certstatus = ($details['root'] == 1 ? "R" : "I"); |
|
358 | + $certTooltip = ($details['root'] == 1 ? _("Root CA") : _("Intermediate CA")); |
|
359 | 359 | if ($details['ca'] == 0 && $details['root'] != 1) { |
360 | - $retval = "<div class='ca-summary' style='background-color:red'><div style='position:absolute; right: 0px; width:20px; height:20px; background-color:maroon; border-radius:10px; text-align: center;'><div style='padding-top:3px; font-weight:bold; color:#ffffff;'>S</div></div>" . _("This is a <strong>SERVER</strong> certificate!") . "<br/>" . $details['name'] . "</div>"; |
|
360 | + $retval = "<div class='ca-summary' style='background-color:red'><div style='position:absolute; right: 0px; width:20px; height:20px; background-color:maroon; border-radius:10px; text-align: center;'><div style='padding-top:3px; font-weight:bold; color:#ffffff;'>S</div></div>"._("This is a <strong>SERVER</strong> certificate!")."<br/>".$details['name']."</div>"; |
|
361 | 361 | \core\common\Entity::outOfThePotatoes(); |
362 | 362 | return $retval; |
363 | 363 | } |
364 | - $retval = "<div class='ca-summary' ><div style='position:absolute; right: 0px; width:20px; height:20px; background-color:#0000ff; border-radius:10px; text-align: center;'><div title='$certTooltip' style='padding-top:3px; font-weight:bold; color:#ffffff;'>$certstatus</div></div>" . $details['name'] . "</div>"; |
|
364 | + $retval = "<div class='ca-summary' ><div style='position:absolute; right: 0px; width:20px; height:20px; background-color:#0000ff; border-radius:10px; text-align: center;'><div title='$certTooltip' style='padding-top:3px; font-weight:bold; color:#ffffff;'>$certstatus</div></div>".$details['name']."</div>"; |
|
365 | 365 | \core\common\Entity::outOfThePotatoes(); |
366 | 366 | return $retval; |
367 | 367 | } |
@@ -374,7 +374,7 @@ discard block |
||
374 | 374 | */ |
375 | 375 | public function previewImageinHTML($imageReference) { |
376 | 376 | \core\common\Entity::intoThePotatoes(); |
377 | - $retval = "<img style='max-width:150px' src='inc/filepreview.php?id=" . $imageReference . "' alt='" . _("Preview of logo file") . "'/>"; |
|
377 | + $retval = "<img style='max-width:150px' src='inc/filepreview.php?id=".$imageReference."' alt='"._("Preview of logo file")."'/>"; |
|
378 | 378 | \core\common\Entity::outOfThePotatoes(); |
379 | 379 | return $retval; |
380 | 380 | } |
@@ -391,13 +391,13 @@ discard block |
||
391 | 391 | $ref = $validator->databaseReference($fileReference); |
392 | 392 | $fileBlob = UIElements::getBlobFromDB($ref['table'], $ref['rowindex'], FALSE); |
393 | 393 | if (is_bool($fileBlob)) { // we didn't actually get a file! |
394 | - $retval = "<div class='ca-summary'>" . _("There was an error while retrieving the file from the database!") . "</div>"; |
|
394 | + $retval = "<div class='ca-summary'>"._("There was an error while retrieving the file from the database!")."</div>"; |
|
395 | 395 | \core\common\Entity::outOfThePotatoes(); |
396 | 396 | return $retval; |
397 | 397 | } |
398 | 398 | $decodedFileBlob = base64_decode($fileBlob); |
399 | 399 | $fileinfo = new \finfo(); |
400 | - $retval = "<div class='ca-summary'>" . _("File exists") . " (" . $fileinfo->buffer($decodedFileBlob, FILEINFO_MIME_TYPE) . ", " . $this->displaySize(strlen($decodedFileBlob)) . ")<br/><a href='inc/filepreview.php?id=$fileReference'>" . _("Preview") . "</a></div>"; |
|
400 | + $retval = "<div class='ca-summary'>"._("File exists")." (".$fileinfo->buffer($decodedFileBlob, FILEINFO_MIME_TYPE).", ".$this->displaySize(strlen($decodedFileBlob)).")<br/><a href='inc/filepreview.php?id=$fileReference'>"._("Preview")."</a></div>"; |
|
401 | 401 | \core\common\Entity::outOfThePotatoes(); |
402 | 402 | return $retval; |
403 | 403 | } |
@@ -425,7 +425,7 @@ discard block |
||
425 | 425 | $retval .= "<tr><td>"; |
426 | 426 | } |
427 | 427 | $finalCaption = ($caption !== NULL ? $caption : $uiMessages[$level]['text']); |
428 | - $retval .= "<img class='icon' src='" . $uiMessages[$level]['icon'] . "' alt='" . $finalCaption . "' title='" . $finalCaption . "'/>"; |
|
428 | + $retval .= "<img class='icon' src='".$uiMessages[$level]['icon']."' alt='".$finalCaption."' title='".$finalCaption."'/>"; |
|
429 | 429 | if (!$omittabletags) { |
430 | 430 | $retval .= "</td><td>"; |
431 | 431 | } |
@@ -507,8 +507,8 @@ discard block |
||
507 | 507 | return ""; |
508 | 508 | } |
509 | 509 | |
510 | - $loggerInstance->debug(4, "Consortium logo is at: " . ROOT . "/web/resources/images/consortium_logo_large.png"); |
|
511 | - $logogd = imagecreatefrompng(ROOT . "/web/resources/images/consortium_logo_large.png"); |
|
510 | + $loggerInstance->debug(4, "Consortium logo is at: ".ROOT."/web/resources/images/consortium_logo_large.png"); |
|
511 | + $logogd = imagecreatefrompng(ROOT."/web/resources/images/consortium_logo_large.png"); |
|
512 | 512 | if ($logogd === FALSE) { // consortium logo is bogus; don't do anything |
513 | 513 | return ""; |
514 | 514 | } |
@@ -534,7 +534,7 @@ discard block |
||
534 | 534 | imagecolorallocate($whiteimage, 255, 255, 255); |
535 | 535 | // also make sure the initial placement is a multitude of 12; otherwise "two half" symbols might be affected |
536 | 536 | $targetplacementx = (int) ($symbolsize * round(($sizeinput[0] / 2 - ($targetwidth - $symbolsize + 1) / 2) / $symbolsize)); |
537 | - $targetplacementy = (int) ($symbolsize * round(($sizeinput[1] / 2 - ($targetheight - $symbolsize + 1 ) / 2) / $symbolsize)); |
|
537 | + $targetplacementy = (int) ($symbolsize * round(($sizeinput[1] / 2 - ($targetheight - $symbolsize + 1) / 2) / $symbolsize)); |
|
538 | 538 | imagecopyresized($inputgd, $whiteimage, $targetplacementx - $symbolsize, $targetplacementy - $symbolsize, 0, 0, $targetwidth + 2 * $symbolsize, $targetheight + 2 * $symbolsize, $targetwidth + 2 * $symbolsize, $targetheight + 2 * $symbolsize); |
539 | 539 | imagecopyresized($inputgd, $logogd, $targetplacementx, $targetplacementy, 0, 0, $targetwidth, $targetheight, $sizelogo[0], $sizelogo[1]); |
540 | 540 | ob_start(); |
@@ -584,9 +584,9 @@ discard block |
||
584 | 584 | $message = "Your configuration appears to be fine."; |
585 | 585 | break; |
586 | 586 | default: |
587 | - throw new Exception("The result code level " . $test->test_result['global'] . " is not defined!"); |
|
587 | + throw new Exception("The result code level ".$test->test_result['global']." is not defined!"); |
|
588 | 588 | } |
589 | - $out .= $this->boxFlexible($test->test_result['global'], "<br><strong>Test Summary</strong><br>" . $message . "<br>See below for details<br><hr>"); |
|
589 | + $out .= $this->boxFlexible($test->test_result['global'], "<br><strong>Test Summary</strong><br>".$message."<br>See below for details<br><hr>"); |
|
590 | 590 | foreach ($test->out as $testValue) { |
591 | 591 | foreach ($testValue as $o) { |
592 | 592 | $out .= $this->boxFlexible($o['level'], $o['message']); |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | |
22 | 22 | namespace core; |
23 | 23 | |
24 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
24 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
25 | 25 | |
26 | 26 | $instMgmt = new \core\UserManagement(); |
27 | 27 | $deco = new \web\lib\admin\PageDecoration(); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | <?php echo $uiElements->infoblock($user->getAttributes(), "user", "User"); ?> |
60 | 60 | <tr> |
61 | 61 | <td> |
62 | -<?php echo "" . _("Unique Identifier") ?> |
|
62 | +<?php echo ""._("Unique Identifier") ?> |
|
63 | 63 | </td> |
64 | 64 | <td> |
65 | 65 | </td> |
@@ -72,14 +72,14 @@ discard block |
||
72 | 72 | <div> |
73 | 73 | <?php |
74 | 74 | if (\config\Master::DB['USER']['readonly'] === FALSE) { |
75 | - echo "<a href='edit_user.php'><button>" . _("Edit User Details") . "</button></a>"; |
|
75 | + echo "<a href='edit_user.php'><button>"._("Edit User Details")."</button></a>"; |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | if ($user->isFederationAdmin()) { |
79 | - echo "<form action='overview_federation.php' method='GET' accept-charset='UTF-8'><button type='submit'>" . sprintf(_('Click here for %s management tasks'), $uiElements->nomenclatureFed) . "</button></form>"; |
|
79 | + echo "<form action='overview_federation.php' method='GET' accept-charset='UTF-8'><button type='submit'>".sprintf(_('Click here for %s management tasks'), $uiElements->nomenclatureFed)."</button></form>"; |
|
80 | 80 | } |
81 | 81 | if ($user->isSuperadmin()) { |
82 | - echo "<form action='112365365321.php' method='GET' accept-charset='UTF-8'><button type='submit'>" . _('Click here to access the superadmin page') . "</button></form>"; |
|
82 | + echo "<form action='112365365321.php' method='GET' accept-charset='UTF-8'><button type='submit'>"._('Click here to access the superadmin page')."</button></form>"; |
|
83 | 83 | } |
84 | 84 | ?> |
85 | 85 | </div> |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | if (\config\Master::FUNCTIONALITY_LOCATIONS['CONFASSISTANT_SILVERBULLET'] == "LOCAL") { |
93 | 93 | $target = "https://wiki.geant.org/x/6Zg7Bw"; // Managed IdP manual |
94 | 94 | } |
95 | - $helptext = "<h3 style='display:inline;'>" . sprintf(_("(Need help? Refer to the <a href='%s'>%s administrator manual</a>)"), $target, $uiElements->nomenclatureInst) . "</h3>"; |
|
95 | + $helptext = "<h3 style='display:inline;'>".sprintf(_("(Need help? Refer to the <a href='%s'>%s administrator manual</a>)"), $target, $uiElements->nomenclatureInst)."</h3>"; |
|
96 | 96 | } else { |
97 | 97 | $helptext = ""; |
98 | 98 | } |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | // we need to run the Federation constructor |
102 | 102 | $cat = new \core\CAT; |
103 | 103 | /// first parameter: number of Identity Providers; second param is the literal configured term for 'Identity Provider' (you may or may not be able to add a plural suffix for your locale) |
104 | - echo "<h2>" . sprintf(ngettext("You are managing the following <span style='display:none'>%d </span>%s:", "You are managing the following <strong>%d</strong> %s:", sizeof($hasInst)), sizeof($hasInst), $uiElements->nomenclatureParticipant) . "</h2>"; |
|
104 | + echo "<h2>".sprintf(ngettext("You are managing the following <span style='display:none'>%d </span>%s:", "You are managing the following <strong>%d</strong> %s:", sizeof($hasInst)), sizeof($hasInst), $uiElements->nomenclatureParticipant)."</h2>"; |
|
105 | 105 | $instlist = []; |
106 | 106 | $my_idps = []; |
107 | 107 | $myFeds = []; |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | } |
125 | 125 | ?> |
126 | 126 | <table class='user_overview'> |
127 | - <caption><?php echo sprintf(_("%s Management Overview"),$uiElements->nomenclatureParticipant);?></caption> |
|
127 | + <caption><?php echo sprintf(_("%s Management Overview"), $uiElements->nomenclatureParticipant); ?></caption> |
|
128 | 128 | <tr> |
129 | 129 | <th scope='col'><?php echo sprintf(_("%s Name"), $uiElements->nomenclatureParticipant); ?></th> |
130 | 130 | <th scope="col"><?php echo sprintf(_("Other admins of this %s"), $uiElements->nomenclatureParticipant); ?></th> |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | <?php |
145 | 145 | foreach ($myFeds as $fed_id => $fed_name) { |
146 | 146 | /// nomenclature 'fed', fed name, nomenclature 'inst' |
147 | - echo "<tr><td colspan='4'><strong>" . sprintf(_("%s %s: %s list"), $uiElements->nomenclatureFed, $fed_name, $uiElements->nomenclatureParticipant) . "</strong></td></tr>"; |
|
147 | + echo "<tr><td colspan='4'><strong>".sprintf(_("%s %s: %s list"), $uiElements->nomenclatureFed, $fed_name, $uiElements->nomenclatureParticipant)."</strong></td></tr>"; |
|
148 | 148 | |
149 | 149 | $fedOrganisations = $my_idps[$fed_id]; |
150 | 150 | asort($fedOrganisations); |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | $the_inst = $oneinst['object']; |
154 | 154 | |
155 | 155 | echo "<tr>" |
156 | - . "<td>" . $oneinst['name'] . "</td>"; |
|
156 | + . "<td>".$oneinst['name']."</td>"; |
|
157 | 157 | echo "<td>"; |
158 | 158 | $admins = $the_inst->listOwners(); |
159 | 159 | $blessedUser = FALSE; |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | $coadmin = new \core\User($username['ID']); |
163 | 163 | $coadmin_name = $coadmin->getAttributes('user:realname'); |
164 | 164 | if (count($coadmin_name) > 0) { |
165 | - echo $coadmin_name[0]['value'] . "<br/>"; |
|
165 | + echo $coadmin_name[0]['value']."<br/>"; |
|
166 | 166 | unset($admins[$number]); |
167 | 167 | } |
168 | 168 | } else { // don't list self |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | } |
178 | 178 | echo "</td><td>"; |
179 | 179 | if ($blessedUser && \config\Master::DB['INST']['readonly'] === FALSE) { |
180 | - echo "<div style='white-space: nowrap;'><form method='post' action='inc/manageAdmins.inc.php?inst_id=" . $the_inst->identifier . "' onsubmit='popupRedirectWindow(this); return false;' accept-charset='UTF-8'><button type='submit'>" . _("Add/Remove Administrators") . "</button></form></div>"; |
|
180 | + echo "<div style='white-space: nowrap;'><form method='post' action='inc/manageAdmins.inc.php?inst_id=".$the_inst->identifier."' onsubmit='popupRedirectWindow(this); return false;' accept-charset='UTF-8'><button type='submit'>"._("Add/Remove Administrators")."</button></form></div>"; |
|
181 | 181 | } |
182 | 182 | echo "</td></tr>"; |
183 | 183 | } |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | echo "</td><td>"; // danger zone |
218 | 218 | ?> |
219 | 219 | <form action='edit_participant_result.php?inst_id=<?php echo $the_inst->identifier; ?>' method='post' accept-charset='UTF-8'> |
220 | - <button class='delete' type='submit' name='submitbutton' value='<?php echo \web\lib\common\FormElements::BUTTON_DELETE; ?>' onclick="return confirm('<?php echo ( \config\ConfAssistant::CONSORTIUM['selfservice_registration'] === NULL ? sprintf(_("After deleting the %s, you can not recreate it yourself - you need a new invitation token from the %s administrator!"), $uiElements->nomenclatureInst, $uiElements->nomenclatureFed) . " " : "" ) . sprintf(_("Do you really want to delete your %s %s?"), $uiElements->nomenclatureParticipant, $my_inst->name); ?>')"><?php echo sprintf(_("Delete %s"), $uiElements->nomenclatureParticipant); ?></button> |
|
220 | + <button class='delete' type='submit' name='submitbutton' value='<?php echo \web\lib\common\FormElements::BUTTON_DELETE; ?>' onclick="return confirm('<?php echo (\config\ConfAssistant::CONSORTIUM['selfservice_registration'] === NULL ? sprintf(_("After deleting the %s, you can not recreate it yourself - you need a new invitation token from the %s administrator!"), $uiElements->nomenclatureInst, $uiElements->nomenclatureFed)." " : "").sprintf(_("Do you really want to delete your %s %s?"), $uiElements->nomenclatureParticipant, $my_inst->name); ?>')"><?php echo sprintf(_("Delete %s"), $uiElements->nomenclatureParticipant); ?></button> |
|
221 | 221 | </form> |
222 | 222 | <form action='edit_participant_result.php?inst_id=<?php echo $the_inst->identifier; ?>' method='post' accept-charset='UTF-8'> |
223 | 223 | <button class='delete' type='submit' name='submitbutton' value='<?php echo \web\lib\common\FormElements::BUTTON_FLUSH_AND_RESTART; ?>' onclick="return confirm('<?php echo sprintf(_("This action will delete all properties of the %s and start over the configuration from scratch. Do you really want to reset all settings of the %s %s?"), $uiElements->nomenclatureParticipant, $uiElements->nomenclatureParticipant, $my_inst->name); ?>')"><?php echo sprintf(_("Reset all %s settings"), $uiElements->nomenclatureParticipant); ?></button> |
@@ -227,32 +227,32 @@ discard block |
||
227 | 227 | } |
228 | 228 | $otherAdminCount = count($admins); // only the unnamed remain |
229 | 229 | if ($otherAdminCount > 0) { |
230 | - echo sprintf(ngettext("%d other user", "%d other users", $otherAdminCount),$otherAdminCount); |
|
230 | + echo sprintf(ngettext("%d other user", "%d other users", $otherAdminCount), $otherAdminCount); |
|
231 | 231 | } |
232 | 232 | echo "</td><td>"; |
233 | 233 | $isAdminMgmtAvailable = FALSE; |
234 | 234 | if ($blessedUser && CONFIG['DB']['INST']['readonly'] === FALSE) { |
235 | 235 | $isAdminMgmtAvailable = TRUE; |
236 | 236 | } |
237 | - echo "<div style='white-space: nowrap;'><form method='post' action='inc/manageAdmins.inc.php?inst_id=" . $the_inst->identifier . "' onsubmit='popupRedirectWindow(this); return false;' accept-charset='UTF-8'><button type='submit' ". ($isAdminMgmtAvailable ? "" : "disabled") .">" . _("Add/Remove Administrators") . "</button></form></div>"; |
|
237 | + echo "<div style='white-space: nowrap;'><form method='post' action='inc/manageAdmins.inc.php?inst_id=".$the_inst->identifier."' onsubmit='popupRedirectWindow(this); return false;' accept-charset='UTF-8'><button type='submit' ".($isAdminMgmtAvailable ? "" : "disabled").">"._("Add/Remove Administrators")."</button></form></div>"; |
|
238 | 238 | echo "</td></tr>"; |
239 | 239 | } |
240 | 240 | ?> |
241 | 241 | </table> |
242 | 242 | <?php |
243 | 243 | } else { |
244 | - echo "<h2>" . sprintf(_("You are not managing any %s."), $uiElements->nomenclatureInst) . "</h2>"; |
|
244 | + echo "<h2>".sprintf(_("You are not managing any %s."), $uiElements->nomenclatureInst)."</h2>"; |
|
245 | 245 | } |
246 | 246 | if (\config\Master::DB['INST']['readonly'] === FALSE) { |
247 | 247 | if (\config\ConfAssistant::CONSORTIUM['selfservice_registration'] === NULL) { |
248 | - echo "<p>" . sprintf(_("Please ask your %s administrator to invite you to become an %s administrator."), $uiElements->nomenclatureFed, $uiElements->nomenclatureParticipant) . "</p>"; |
|
248 | + echo "<p>".sprintf(_("Please ask your %s administrator to invite you to become an %s administrator."), $uiElements->nomenclatureFed, $uiElements->nomenclatureParticipant)."</p>"; |
|
249 | 249 | echo "<hr/> |
250 | 250 | <div style='white-space: nowrap;'> |
251 | 251 | <form action='action_enrollment.php' method='get' accept-charset='UTF-8'>" . |
252 | - sprintf(_("Did you receive an invitation token to manage an %s? Please paste it here:"), $uiElements->nomenclatureParticipant) . |
|
252 | + sprintf(_("Did you receive an invitation token to manage an %s? Please paste it here:"), $uiElements->nomenclatureParticipant). |
|
253 | 253 | " <input type='text' id='token' name='token'/> |
254 | 254 | <button type='submit'>" . |
255 | - _("Go!") . " |
|
255 | + _("Go!")." |
|
256 | 256 | </button> |
257 | 257 | </form> |
258 | 258 | </div>"; |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | <div style='white-space: nowrap;'> |
262 | 262 | <form action='action_enrollment.php' method='get'><button type='submit' accept-charset='UTF-8'> |
263 | 263 | <input type='hidden' id='token' name='token' value='SELF-REGISTER'/>" . |
264 | - sprintf(_("New %s Registration"), $uiElements->nomenclatureParticipant) . " |
|
264 | + sprintf(_("New %s Registration"), $uiElements->nomenclatureParticipant)." |
|
265 | 265 | </button> |
266 | 266 | </form> |
267 | 267 | </div>"; |
@@ -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 | $auth = new \web\lib\admin\Authentication(); |
26 | 26 | $loggerInstance = new \core\common\Logging(); |
@@ -33,15 +33,15 @@ discard block |
||
33 | 33 | $myInstOriginal = $validator->existingIdP($_GET['inst_id'], $_SESSION['user']); |
34 | 34 | $instId = $myInstOriginal->identifier; |
35 | 35 | |
36 | -$hello = _("To whom it may concern,") . "\n\n"; |
|
37 | -$bye = _("This mail is merely a cross-check because these changes can be security-relevant. If the change was expected, you do not need to take any action.") . "\n\n" . |
|
38 | - _("Greetings, ") . "\n\n" . |
|
36 | +$hello = _("To whom it may concern,")."\n\n"; |
|
37 | +$bye = _("This mail is merely a cross-check because these changes can be security-relevant. If the change was expected, you do not need to take any action.")."\n\n". |
|
38 | + _("Greetings, ")."\n\n". |
|
39 | 39 | \config\Master::APPEARANCE['productname_long']; |
40 | 40 | |
41 | 41 | switch ($_POST['submitbutton']) { |
42 | 42 | case web\lib\common\FormElements::BUTTON_DELETE: |
43 | 43 | $myInstOriginal->destroy(); |
44 | - $loggerInstance->writeAudit($_SESSION['user'], "DEL", "IdP " . $instId); |
|
44 | + $loggerInstance->writeAudit($_SESSION['user'], "DEL", "IdP ".$instId); |
|
45 | 45 | header("Location: overview_user.php"); |
46 | 46 | exit; |
47 | 47 | case web\lib\common\FormElements::BUTTON_FLUSH_AND_RESTART: |
@@ -51,9 +51,9 @@ discard block |
||
51 | 51 | } |
52 | 52 | // flush all IdP attributes and send user to creation wizard |
53 | 53 | $myInstOriginal->flushAttributes(); |
54 | - $loggerInstance->writeAudit($_SESSION['user'], "DEL", "IdP starting over" . $instId); |
|
55 | - $text = $hello . |
|
56 | - sprintf(_("the %s %s / %s / (previously known as) '%s' has deleted all properties and is starting over freshly. This means that its not recognisable by its name any more, and it may assume a different name in the future. You will get another mail if and when the name change happens."), $ui->nomenclatureInst, strtoupper($myInstOriginal->federation), $myInstOriginal->identifier, $myInstOriginal->name) . "\n\n" . |
|
54 | + $loggerInstance->writeAudit($_SESSION['user'], "DEL", "IdP starting over".$instId); |
|
55 | + $text = $hello. |
|
56 | + sprintf(_("the %s %s / %s / (previously known as) '%s' has deleted all properties and is starting over freshly. This means that its not recognisable by its name any more, and it may assume a different name in the future. You will get another mail if and when the name change happens."), $ui->nomenclatureInst, strtoupper($myInstOriginal->federation), $myInstOriginal->identifier, $myInstOriginal->name)."\n\n". |
|
57 | 57 | $bye; |
58 | 58 | $fed = new core\Federation($myInstOriginal->federation); |
59 | 59 | foreach ($fed->listFederationAdmins() as $id) { |
@@ -72,19 +72,19 @@ discard block |
||
72 | 72 | exit(0); |
73 | 73 | } |
74 | 74 | $inst_name = $myInstOriginal->name; |
75 | - echo "<h1>" . sprintf(_("Submitted attributes for IdP '%s'"), $inst_name) . "</h1>"; |
|
75 | + echo "<h1>".sprintf(_("Submitted attributes for IdP '%s'"), $inst_name)."</h1>"; |
|
76 | 76 | echo "<table>"; |
77 | 77 | echo $optionParser->processSubmittedFields($myInstOriginal, $_POST, $_FILES); |
78 | 78 | echo "</table>"; |
79 | 79 | // delete cached logo, if present |
80 | - $dir = ROOT . '/web/downloads/logos/'; |
|
81 | - $globResult = glob($dir . $myInstOriginal->identifier . "_*.png"); |
|
80 | + $dir = ROOT.'/web/downloads/logos/'; |
|
81 | + $globResult = glob($dir.$myInstOriginal->identifier."_*.png"); |
|
82 | 82 | if ($globResult === FALSE) { // we should catch the improbable error condition |
83 | 83 | $globResult = []; |
84 | 84 | } |
85 | 85 | array_map('unlink', $globResult); |
86 | 86 | $loggerInstance->debug(4, "UNLINK from $dir\n"); |
87 | - $loggerInstance->writeAudit($_SESSION['user'], "MOD", "IdP " . $myInstOriginal->identifier . " - attributes changed"); |
|
87 | + $loggerInstance->writeAudit($_SESSION['user'], "MOD", "IdP ".$myInstOriginal->identifier." - attributes changed"); |
|
88 | 88 | |
89 | 89 | // re-instantiate ourselves... profiles need fresh data |
90 | 90 | $myInstReinstantiated = $validator->existingIdP($_GET['inst_id'], $_SESSION['user']); |
@@ -93,10 +93,10 @@ discard block |
||
93 | 93 | if (count($significantChanges) > 0) { |
94 | 94 | // send a notification/alert mail to someone we know is in charge |
95 | 95 | /// were made to the *Identity Provider* *LU* / integer number of IdP / (previously known as) Name |
96 | - $text = $hello . sprintf(_("significant changes were made to the %s %s / %s / (previously known as) '%s'."), $ui->nomenclatureInst, strtoupper($myInstOriginal->federation), $myInstOriginal->identifier, $myInstOriginal->name) . "\n\n"; |
|
96 | + $text = $hello.sprintf(_("significant changes were made to the %s %s / %s / (previously known as) '%s'."), $ui->nomenclatureInst, strtoupper($myInstOriginal->federation), $myInstOriginal->identifier, $myInstOriginal->name)."\n\n"; |
|
97 | 97 | if (isset($significantChanges[\core\IdP::INSTNAME_CHANGED])) { |
98 | - $text .= sprintf(_("The %s has changed its name. The details are below:"), $ui->nomenclatureInst) . "\n\n"; |
|
99 | - $text .= $significantChanges[\core\IdP::INSTNAME_CHANGED] . "\n\n"; |
|
98 | + $text .= sprintf(_("The %s has changed its name. The details are below:"), $ui->nomenclatureInst)."\n\n"; |
|
99 | + $text .= $significantChanges[\core\IdP::INSTNAME_CHANGED]."\n\n"; |
|
100 | 100 | } |
101 | 101 | $text .= $bye; |
102 | 102 | // (currently, send hard-wired to NRO - future: for linked insts, check eduroam DBv2 and send to registered admins directly) |
@@ -112,12 +112,12 @@ discard block |
||
112 | 112 | |
113 | 113 | if (isset(\config\ConfAssistant::CONSORTIUM['ssid']) && count(\config\ConfAssistant::CONSORTIUM['ssid']) > 0) { |
114 | 114 | foreach (\config\ConfAssistant::CONSORTIUM['ssid'] as $ssidname) { |
115 | - $ssids[] = $ssidname . " " . _("(WPA2/AES)"); |
|
115 | + $ssids[] = $ssidname." "._("(WPA2/AES)"); |
|
116 | 116 | } |
117 | 117 | } |
118 | 118 | |
119 | 119 | foreach ($myInstReinstantiated->getAttributes("media:SSID") as $ssidname) { |
120 | - $ssids[] = $ssidname['value'] . " " . _("(WPA2/AES)"); |
|
120 | + $ssids[] = $ssidname['value']." "._("(WPA2/AES)"); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | echo "<table>"; |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | if (count($ssids) > 0) { |
126 | 126 | $printedlist = ""; |
127 | 127 | foreach ($ssids as $names) { |
128 | - $printedlist = $printedlist . "$names "; |
|
128 | + $printedlist = $printedlist."$names "; |
|
129 | 129 | } |
130 | 130 | echo $uiElements->boxOkay(sprintf(_("Your installers will configure the following SSIDs: <strong>%s</strong>"), $printedlist), _("SSIDs configured")); |
131 | 131 | } |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | // did we get an email address? then, show the silverbullet jumpstart button |
154 | 154 | // otherwise, issue a smartass comment |
155 | 155 | if (count($myInstReinstantiated->getAttributes("support:email")) > 0) { |
156 | - echo "<form method='post' action='edit_silverbullet.php?inst_id=$my_inst->identifier' accept-charset='UTF-8'><button type='submit'>" . sprintf(_("Continue to %s properties"), \core\ProfileSilverbullet::PRODUCTNAME) . "</button></form>"; |
|
156 | + echo "<form method='post' action='edit_silverbullet.php?inst_id=$my_inst->identifier' accept-charset='UTF-8'><button type='submit'>".sprintf(_("Continue to %s properties"), \core\ProfileSilverbullet::PRODUCTNAME)."</button></form>"; |
|
157 | 157 | } else { |
158 | 158 | echo "<table>"; |
159 | 159 | echo $uiElements->boxError(sprintf(_("You did not submit an e-mail address. This is required for %s. Please go to the %s dashboard and edit your helpdesk settings to include a helpdesk e-mail address."), core\ProfileSilverbullet::PRODUCTNAME, $ui->nomenclatureInst), _("No support e-mail!")); |
@@ -161,10 +161,10 @@ discard block |
||
161 | 161 | } |
162 | 162 | } |
163 | 163 | if (\config\Master::FUNCTIONALITY_LOCATIONS['CONFASSISTANT_RADIUS'] == "LOCAL") { |
164 | - echo "<br/><form method='post' action='edit_profile.php?inst_id=$my_inst->identifier' accept-charset='UTF-8'><button type='submit'>" . _("Continue to RADIUS/EAP profile definition") . "</button></form>"; |
|
164 | + echo "<br/><form method='post' action='edit_profile.php?inst_id=$my_inst->identifier' accept-charset='UTF-8'><button type='submit'>"._("Continue to RADIUS/EAP profile definition")."</button></form>"; |
|
165 | 165 | } |
166 | 166 | } |
167 | - echo "<br/><form method='post' action='overview_user.php?inst_id=$my_inst->identifier' accept-charset='UTF-8'><button type='submit'>" . _("Continue to dashboard") . "</button></form>"; |
|
167 | + echo "<br/><form method='post' action='overview_user.php?inst_id=$my_inst->identifier' accept-charset='UTF-8'><button type='submit'>"._("Continue to dashboard")."</button></form>"; |
|
168 | 168 | |
169 | 169 | break; |
170 | 170 | default: |