@@ -11,14 +11,14 @@ discard block |
||
11 | 11 | <?php |
12 | 12 | $cat = new core\CAT(); |
13 | 13 | function escaped_echo($s) { |
14 | - echo preg_replace('/"/','"',$s); |
|
14 | + echo preg_replace('/"/','"',$s); |
|
15 | 15 | } |
16 | 16 | |
17 | 17 | $langObject = new \core\common\Language(); |
18 | 18 | $langObject->setTextDomain('web_user'); |
19 | 19 | $idpId = filter_input(INPUT_GET, 'idp', FILTER_VALIDATE_INT) ?? filter_input(INPUT_POST, 'idp', FILTER_VALIDATE_INT); |
20 | 20 | $profileId = filter_input(INPUT_GET, 'profile', FILTER_VALIDATE_INT) ?? filter_input(INPUT_POST, 'profile', FILTER_VALIDATE_INT); |
21 | - ?> |
|
21 | + ?> |
|
22 | 22 | var n; |
23 | 23 | var profile; |
24 | 24 | var generateTimer; |
@@ -353,7 +353,7 @@ discard block |
||
353 | 353 | } |
354 | 354 | |
355 | 355 | <?php if($idpId) { |
356 | - print "front_page = 0;\n"; |
|
356 | + print "front_page = 0;\n"; |
|
357 | 357 | } ?> |
358 | 358 | |
359 | 359 | function showTOU(){ |
@@ -487,7 +487,7 @@ discard block |
||
487 | 487 | if ($profileId) { |
488 | 488 | print "listProfiles($idpId,$profileId);"; |
489 | 489 | } |
490 | - ?> |
|
490 | + ?> |
|
491 | 491 | |
492 | 492 | $(".signin").click(function(event){ |
493 | 493 | pressedButton = $(this); |
@@ -548,12 +548,12 @@ discard block |
||
548 | 548 | }); |
549 | 549 | DiscoJuice.Constants.Countries = { |
550 | 550 | <?php |
551 | - $C = $Gui->printCountryList(1); |
|
552 | - $ret = ''; |
|
553 | - foreach ($C as $key => $val) { |
|
551 | + $C = $Gui->printCountryList(1); |
|
552 | + $ret = ''; |
|
553 | + foreach ($C as $key => $val) { |
|
554 | 554 | $ret .= "'$key': \"$val\","; |
555 | - } |
|
556 | - echo substr($ret, 0, -1); |
|
555 | + } |
|
556 | + echo substr($ret, 0, -1); |
|
557 | 557 | ?> |
558 | 558 | }; |
559 | 559 |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | <?php |
12 | 12 | $cat = new core\CAT(); |
13 | 13 | function escaped_echo($s) { |
14 | - echo preg_replace('/"/','"',$s); |
|
14 | + echo preg_replace('/"/', '"', $s); |
|
15 | 15 | } |
16 | 16 | |
17 | 17 | $langObject = new \core\common\Language(); |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | result = j.status; |
71 | 71 | if(! result) { |
72 | 72 | alert("<?php escaped_echo(_("no matching data found"))?>"); |
73 | - document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']),'/').'/'?>'; |
|
73 | + document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/') . '/'?>'; |
|
74 | 74 | } |
75 | 75 | j = j.data; |
76 | 76 | n = j.length; |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | inst_name = j[0].idp_name; |
79 | 79 | logo = j[0].logo; |
80 | 80 | $("#inst_name").val(inst_name); |
81 | - $("#inst_name_span").html("<?php escaped_echo(sprintf(_("Selected %s:"),$cat->nomenclature_inst))?> <strong>"+inst_name+"</strong>"); |
|
81 | + $("#inst_name_span").html("<?php escaped_echo(sprintf(_("Selected %s:"), $cat->nomenclature_inst))?> <strong>"+inst_name+"</strong>"); |
|
82 | 82 | $(".inst_name").text(inst_name); |
83 | 83 | $("#user_page").show(); |
84 | 84 | $("#institution_name").show(); |
@@ -191,8 +191,8 @@ discard block |
||
191 | 191 | j1 = $.parseJSON(data); |
192 | 192 | result = j1.status; |
193 | 193 | if(! result) { |
194 | - alert("<?php escaped_echo( _("no matching data found"))?>"); |
|
195 | - document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']),'/').'/'?>'; |
|
194 | + alert("<?php escaped_echo(_("no matching data found"))?>"); |
|
195 | + document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/') . '/'?>'; |
|
196 | 196 | } |
197 | 197 | j = j1.data; |
198 | 198 | if(j.description !== undefined && j.description) { |
@@ -203,15 +203,15 @@ discard block |
||
203 | 203 | $("#profile_desc").text(''); |
204 | 204 | } |
205 | 205 | if(j.local_url !== undefined && j.local_url) |
206 | - txt = txt+'<tr><td><?php escaped_echo(_("WWW:"));?></td><td><a href="'+j.local_url+'" target="_blank">'+j.local_url+'</a></td></tr>'; |
|
206 | + txt = txt+'<tr><td><?php escaped_echo(_("WWW:")); ?></td><td><a href="'+j.local_url+'" target="_blank">'+j.local_url+'</a></td></tr>'; |
|
207 | 207 | if(j.local_email !== undefined && j.local_email) |
208 | - txt = txt+'<tr><td><?php escaped_echo(_("email:"));?></td><td><a href=mailto:"'+j.local_email+'">'+j.local_email+'</a></td></tr>'; |
|
208 | + txt = txt+'<tr><td><?php escaped_echo(_("email:")); ?></td><td><a href=mailto:"'+j.local_email+'">'+j.local_email+'</a></td></tr>'; |
|
209 | 209 | if(j.local_phone !== undefined && j.local_phone) |
210 | - txt = txt+'<tr><td><?php escaped_echo(_("tel:"));?></td><td>'+j.local_phone+'</td></tr>'; |
|
210 | + txt = txt+'<tr><td><?php escaped_echo(_("tel:")); ?></td><td>'+j.local_phone+'</td></tr>'; |
|
211 | 211 | if(txt) |
212 | - txt = "<table><tr><th colspan='2'><?php escaped_echo(sprintf(_("If you encounter problems, then you can obtain direct assistance from your %s at:"),$cat->nomenclature_inst)); ?></th></tr>"+txt+'</table>'; |
|
212 | + txt = "<table><tr><th colspan='2'><?php escaped_echo(sprintf(_("If you encounter problems, then you can obtain direct assistance from your %s at:"), $cat->nomenclature_inst)); ?></th></tr>"+txt+'</table>'; |
|
213 | 213 | else |
214 | - txt = "<table><tr><th colspan='2'><?php escaped_echo(sprintf(_("If you encounter problems you should ask for help at your %s"),$cat->nomenclature_inst)); ?>.</th></tr></table>"; |
|
214 | + txt = "<table><tr><th colspan='2'><?php escaped_echo(sprintf(_("If you encounter problems you should ask for help at your %s"), $cat->nomenclature_inst)); ?>.</th></tr></table>"; |
|
215 | 215 | $("#user_info").html(txt); |
216 | 216 | $("#user_info").show(); |
217 | 217 | if(j.silverbullet) { |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | $("#g_"+v.id).addClass('alertButton'); |
230 | 230 | $("#cross_icon_"+v.id).show(); |
231 | 231 | $("#"+v.id).addClass('disabledDevice'); |
232 | - $("#download_button_header_"+v.id).html("<?php escaped_echo(sprintf(_("This device cannot be configured with settings provided by your %s"),$cat->nomenclature_inst))?>"); |
|
232 | + $("#download_button_header_"+v.id).html("<?php escaped_echo(sprintf(_("This device cannot be configured with settings provided by your %s"), $cat->nomenclature_inst))?>"); |
|
233 | 233 | $("#info_b_"+v.id+",#g_info_b_"+v.id).hide(); |
234 | 234 | } else { |
235 | 235 | if(v.status == -1) |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | $("#"+v.id+",#g_"+v.id).addClass('additionalInfo'); |
242 | 242 | $("#"+v.id+",#g_"+v.id).click(function(event){ |
243 | 243 | i_div = $("#info_"+$(this).attr('id')); |
244 | - t = "<?php escaped_echo(_("Your site administrator has specified that this device should be configured with resources located on a local page. When you click <b>Continue</b> this page will be opened in a new window/tab."))?>"+"<br><span class='redirect_link'><a href='"+v.redirect+"' target='_blank'><?php escaped_echo(_("Continue"));?></a></span>"; |
|
244 | + t = "<?php escaped_echo(_("Your site administrator has specified that this device should be configured with resources located on a local page. When you click <b>Continue</b> this page will be opened in a new window/tab."))?>"+"<br><span class='redirect_link'><a href='"+v.redirect+"' target='_blank'><?php escaped_echo(_("Continue")); ?></a></span>"; |
|
245 | 245 | i_div.html(t); |
246 | 246 | $(".redirect_link").click(function(event) { |
247 | 247 | i_div.hide(); |
@@ -249,13 +249,13 @@ discard block |
||
249 | 249 | |
250 | 250 | }); |
251 | 251 | } else if(v.device_customtext != '0' || v.eap_customtext != '0' || v.message != '0' || v.status > 0) { |
252 | - var continue_text = "<?php escaped_echo(_("Continue"));?>"; |
|
252 | + var continue_text = "<?php escaped_echo(_("Continue")); ?>"; |
|
253 | 253 | $("#"+v.id+",#g_"+v.id).addClass('additionalInfo'); |
254 | 254 | $("#"+v.id+",#g_"+v.id).click(function(event){ |
255 | 255 | i_div = $("#info_"+$(this).attr('id')); |
256 | 256 | if(v.status > 0) { |
257 | - t = "<?php escaped_echo(sprintf(_("This device cannot be configured with settings provided by your %s"),$cat->nomenclature_inst))?>"; |
|
258 | - continue_text = "<?php escaped_echo(_("Close"));?>"; |
|
257 | + t = "<?php escaped_echo(sprintf(_("This device cannot be configured with settings provided by your %s"), $cat->nomenclature_inst))?>"; |
|
258 | + continue_text = "<?php escaped_echo(_("Close")); ?>"; |
|
259 | 259 | } else { |
260 | 260 | t = i_div.html(); |
261 | 261 | if(v.message != '0') { |
@@ -312,7 +312,7 @@ discard block |
||
312 | 312 | } |
313 | 313 | |
314 | 314 | function infoCAT(k,title) { |
315 | - $.post('<?php echo $Gui->skinObject->findResourceUrl("BASE", "user/cat_info.php");?>', {page: k, lang: lang}, function(data) { |
|
315 | + $.post('<?php echo $Gui->skinObject->findResourceUrl("BASE", "user/cat_info.php"); ?>', {page: k, lang: lang}, function(data) { |
|
316 | 316 | if(data.substring(0,8) == 'no_title') { |
317 | 317 | data = data.substring(8,data.length); |
318 | 318 | } else { |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | var x = getWindowHCenter() - 16; |
331 | 331 | $("#loading_ico").css('left',x+'px'); |
332 | 332 | $("#loading_ico").show(); |
333 | - window.location.replace("<?php echo $Gui->skinObject->findResourceUrl("BASE","admin/overview_user.php");?>?lang="+lang); |
|
333 | + window.location.replace("<?php echo $Gui->skinObject->findResourceUrl("BASE", "admin/overview_user.php"); ?>?lang="+lang); |
|
334 | 334 | } |
335 | 335 | |
336 | 336 | /* Get horizontal center of the Browser Window */ |
@@ -351,7 +351,7 @@ discard block |
||
351 | 351 | return(Math.round(windowWidth/2)); |
352 | 352 | } |
353 | 353 | |
354 | -<?php if($idpId) { |
|
354 | +<?php if ($idpId) { |
|
355 | 355 | print "front_page = 0;\n"; |
356 | 356 | } ?> |
357 | 357 | |
@@ -389,10 +389,10 @@ discard block |
||
389 | 389 | $("#download_info a").attr('href',download_link); |
390 | 390 | $('#download_info').show(); |
391 | 391 | if( generateTimer > 0 ) { |
392 | - setTimeout("document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']),'/')?>'+'/'+download_link",generateTimer); |
|
392 | + setTimeout("document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/')?>'+'/'+download_link",generateTimer); |
|
393 | 393 | } |
394 | 394 | else { |
395 | - document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']),'/')?>'+'/'+download_link; |
|
395 | + document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/')?>'+'/'+download_link; |
|
396 | 396 | } |
397 | 397 | } |
398 | 398 | } |
@@ -510,13 +510,13 @@ discard block |
||
510 | 510 | "overlay":true,"cookie":true,"type":false, |
511 | 511 | "country":true,"location":true, |
512 | 512 | "title":"<?php escaped_echo($cat->nomenclature_inst) ?>", |
513 | - "subtitle":"<?php escaped_echo(sprintf(_("Select your <strong>%s<\/strong>"),$cat->nomenclature_inst)) ?>", |
|
514 | - "textHelp": "<?php escaped_echo(sprintf(_("Help, my %s is not on the list"),$cat->nomenclature_inst)) ?>", |
|
515 | - "textHelpMore": "<?php escaped_echo(sprintf(_("This system relies on information supplied by local %s administrators. If your %s is not on the list, then nag them to add information to the %s database."),CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'], $cat->nomenclature_inst, CONFIG['APPEARANCE']['productname'])); ?>", |
|
513 | + "subtitle":"<?php escaped_echo(sprintf(_("Select your <strong>%s<\/strong>"), $cat->nomenclature_inst)) ?>", |
|
514 | + "textHelp": "<?php escaped_echo(sprintf(_("Help, my %s is not on the list"), $cat->nomenclature_inst)) ?>", |
|
515 | + "textHelpMore": "<?php escaped_echo(sprintf(_("This system relies on information supplied by local %s administrators. If your %s is not on the list, then nag them to add information to the %s database."), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'], $cat->nomenclature_inst, CONFIG['APPEARANCE']['productname'])); ?>", |
|
516 | 516 | "textLocateMe": "<?php escaped_echo(_("Locate me more accurately using HTML5 Geo-Location")) ?>", |
517 | - "textShowProviders": "<?php escaped_echo(sprintf(_("Show %ss in"),$cat->nomenclature_inst)) ?>", |
|
517 | + "textShowProviders": "<?php escaped_echo(sprintf(_("Show %ss in"), $cat->nomenclature_inst)) ?>", |
|
518 | 518 | "textAllCountries": "<?php escaped_echo(_("all countries")) ?>", |
519 | - "textSearch" : "<?php escaped_echo(sprintf(_("or search for an %s, in example Univerity of Oslo"),$cat->nomenclature_inst)) ?>", |
|
519 | + "textSearch" : "<?php escaped_echo(sprintf(_("or search for an %s, in example Univerity of Oslo"), $cat->nomenclature_inst)) ?>", |
|
520 | 520 | "textShowAllCountries": "<?php escaped_echo(_("show all countries")) ?>", |
521 | 521 | "textLimited1" : "<?php escaped_echo(_("Results limited to"))?>", |
522 | 522 | "textLimited2" : "<?php escaped_echo(_("entries - show more"))?>", |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | sprintf(_("In this section, you define on which media %s should be configured on user devices."), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name']) . "</p> |
138 | 138 | <ul>"; |
139 | 139 | echo "<li>"; |
140 | - echo "<strong>" . ( count(CONFIG_CONFASSISTANT['CONSORTIUM']['ssid']) > 0 ? _("Additional SSIDs:") : _("SSIDs:")) . " </strong>"; |
|
140 | + echo "<strong>" . (count(CONFIG_CONFASSISTANT['CONSORTIUM']['ssid']) > 0 ? _("Additional SSIDs:") : _("SSIDs:")) . " </strong>"; |
|
141 | 141 | if (count(CONFIG_CONFASSISTANT['CONSORTIUM']['ssid']) > 0) { |
142 | 142 | $ssidlist = ""; |
143 | 143 | foreach (CONFIG_CONFASSISTANT['CONSORTIUM']['ssid'] as $ssid) { |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | echo "</li>"; |
157 | 157 | |
158 | 158 | echo "<li>"; |
159 | - echo "<strong>" . ( count(CONFIG_CONFASSISTANT['CONSORTIUM']['ssid']) > 0 ? _("Additional Hotspot 2.0 / Passpoint Consortia:") : _("Hotspot 2.0 / Passpoint Consortia:")) . " </strong>"; |
|
159 | + echo "<strong>" . (count(CONFIG_CONFASSISTANT['CONSORTIUM']['ssid']) > 0 ? _("Additional Hotspot 2.0 / Passpoint Consortia:") : _("Hotspot 2.0 / Passpoint Consortia:")) . " </strong>"; |
|
160 | 160 | if (count(CONFIG_CONFASSISTANT['CONSORTIUM']['interworking-consortium-oi']) > 0) { |
161 | 161 | $consortiumlist = ""; |
162 | 162 | foreach (CONFIG_CONFASSISTANT['CONSORTIUM']['interworking-consortium-oi'] as $oi) { |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | <legend><strong><?php echo _("Helpdesk Details for all users"); ?></strong></legend> |
187 | 187 | <?php |
188 | 188 | if ($wizardStyle) { |
189 | - echo "<p>"._("This section can be used to upload specific Terms of Use for your users and to display details of how your users can reach your local helpdesk.")."</p>"; |
|
189 | + echo "<p>" . _("This section can be used to upload specific Terms of Use for your users and to display details of how your users can reach your local helpdesk.") . "</p>"; |
|
190 | 190 | |
191 | 191 | if (CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_RADIUS'] == "LOCAL") { |
192 | 192 | echo "<p>" . |
@@ -194,10 +194,10 @@ discard block |
||
194 | 194 | "<p>" . |
195 | 195 | _("If you enter a value here, it will be added to the installers for all your users, and will be displayed on the download page. If you operate separate helpdesks for different user groups (we call this 'profiles'), or operate no help desk at all, you can also leave any of these fields empty and optionally specify per-profile helpdesk information later in this wizard.") . "</p>"; |
196 | 196 | if (CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_SILVERBULLET'] == "LOCAL") { |
197 | - echo "<p>" . sprintf(_("For %s deployments, providing at least a local e-mail contact is required."), core\ProfileSilverbullet::PRODUCTNAME) ." " . _("This is the contact point for your end users' level 1 support.") . "</p>"; |
|
197 | + echo "<p>" . sprintf(_("For %s deployments, providing at least a local e-mail contact is required."), core\ProfileSilverbullet::PRODUCTNAME) . " " . _("This is the contact point for your end users' level 1 support.") . "</p>"; |
|
198 | 198 | } |
199 | 199 | } elseif (CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_SILVERBULLET'] == "LOCAL") { |
200 | - echo "<p>". _("Providing at least a local support e-mail contact is required.")." "._("This is the contact point for your end users' level 1 support.")."</p>"; |
|
200 | + echo "<p>" . _("Providing at least a local support e-mail contact is required.") . " " . _("This is the contact point for your end users' level 1 support.") . "</p>"; |
|
201 | 201 | } |
202 | 202 | |
203 | 203 | } |
@@ -94,7 +94,7 @@ |
||
94 | 94 | |
95 | 95 | /* load sub-configs if we are dealing with those in this installation */ |
96 | 96 | |
97 | -if (CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_SILVERBULLET'] == 'LOCAL' || CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_RADIUS'] == 'LOCAL' ) { |
|
97 | +if (CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_SILVERBULLET'] == 'LOCAL' || CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_RADIUS'] == 'LOCAL') { |
|
98 | 98 | include(ROOT . "/config/config-confassistant.php"); |
99 | 99 | } |
100 | 100 |
@@ -185,7 +185,6 @@ |
||
185 | 185 | * - RETVAL_NOTCONFIGURED; needs CONFIG_DIAGNOSTICS['RADIUSTESTS']['TLS-discoverytag'] |
186 | 186 | * - RETVAL_INVALID (at least one format error) |
187 | 187 | * - RETVAL_OK (all fine) |
188 | - |
|
189 | 188 | * @return int one of two RETVALs above |
190 | 189 | */ |
191 | 190 | public function relevantNAPTRcompliance() { |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | </td> |
280 | 280 | <td> |
281 | 281 | <input type='checkbox' <?php |
282 | - echo ($verify != FALSE ? "checked" : "" ); |
|
282 | + echo ($verify != FALSE ? "checked" : ""); |
|
283 | 283 | ?> name='verify_support' onclick=' |
284 | 284 | if (this.form.elements["verify_support"].checked !== true || this.form.elements["realm"].value.length == 0) { |
285 | 285 | this.form.elements["hint_support"].setAttribute("disabled", "disabled"); |
@@ -287,48 +287,48 @@ discard block |
||
287 | 287 | this.form.elements["hint_support"].removeAttribute("disabled"); |
288 | 288 | } |
289 | 289 | ;'/> |
290 | - <span id='hint_label' style='<?php echo ($realm == "" ? "color:#999999" : "" ); ?>'> |
|
290 | + <span id='hint_label' style='<?php echo ($realm == "" ? "color:#999999" : ""); ?>'> |
|
291 | 291 | <?php echo _("Prefill user input with realm suffix:"); ?> |
292 | 292 | </span> |
293 | - <input type='checkbox' <?php echo ($verify == FALSE ? "disabled" : "" ); ?> name='hint_support' <?php echo ( $hint != FALSE ? "checked" : "" ); ?> /> |
|
293 | + <input type='checkbox' <?php echo ($verify == FALSE ? "disabled" : ""); ?> name='hint_support' <?php echo ($hint != FALSE ? "checked" : ""); ?> /> |
|
294 | 294 | </td> |
295 | 295 | </tr> |
296 | 296 | <tr> |
297 | 297 | |
298 | 298 | <!-- checkbox and input field for anonymity support, available only when realm is known--> |
299 | 299 | <td> |
300 | - <span id='anon_support_label' style='<?php echo ($realm == "" ? "color:#999999" : "" ); ?>'> |
|
300 | + <span id='anon_support_label' style='<?php echo ($realm == "" ? "color:#999999" : ""); ?>'> |
|
301 | 301 | <?php echo _("Enable Anonymous Outer Identity:"); ?> |
302 | 302 | </span> |
303 | 303 | </td> |
304 | 304 | <td> |
305 | - <input type='checkbox' <?php echo ($useAnon != FALSE ? "checked" : "" ) . ($realm == "" ? " disabled" : "" ); ?> name='anon_support' onclick=' |
|
305 | + <input type='checkbox' <?php echo ($useAnon != FALSE ? "checked" : "") . ($realm == "" ? " disabled" : ""); ?> name='anon_support' onclick=' |
|
306 | 306 | if (this.form.elements["anon_support"].checked !== true) { |
307 | 307 | this.form.elements["anon_local"].setAttribute("disabled", "disabled"); |
308 | 308 | } else { |
309 | 309 | this.form.elements["anon_local"].removeAttribute("disabled"); |
310 | 310 | } |
311 | 311 | ;'/> |
312 | - <input type='text' <?php echo ($checkuserOuter == FALSE ? "disabled" : "" ); ?> name='anon_local' value='<?php echo $anonLocal; ?>'/> |
|
312 | + <input type='text' <?php echo ($checkuserOuter == FALSE ? "disabled" : ""); ?> name='anon_local' value='<?php echo $anonLocal; ?>'/> |
|
313 | 313 | </td> |
314 | 314 | </tr> |
315 | 315 | <tr> |
316 | 316 | |
317 | 317 | <!-- checkbox and input field for check realm outer id, available only when realm is known--> |
318 | 318 | <td> |
319 | - <span id='checkuser_label' style='<?php echo ($realm == "" ? "color:#999999" : "" ); ?>'> |
|
319 | + <span id='checkuser_label' style='<?php echo ($realm == "" ? "color:#999999" : ""); ?>'> |
|
320 | 320 | <?php echo _("Use special Outer Identity for realm checks:"); ?> |
321 | 321 | </span> |
322 | 322 | </td> |
323 | 323 | <td> |
324 | - <input type='checkbox' <?php echo ($checkuserOuter != FALSE ? "checked" : "" ) . ($realm == "" ? " disabled" : "" ); ?> name='checkuser_support' onclick=' |
|
324 | + <input type='checkbox' <?php echo ($checkuserOuter != FALSE ? "checked" : "") . ($realm == "" ? " disabled" : ""); ?> name='checkuser_support' onclick=' |
|
325 | 325 | if (this.form.elements["checkuser_support"].checked !== true) { |
326 | 326 | this.form.elements["checkuser_local"].setAttribute("disabled", "disabled"); |
327 | 327 | } else { |
328 | 328 | this.form.elements["checkuser_local"].removeAttribute("disabled"); |
329 | 329 | } |
330 | 330 | ;'/> |
331 | - <input type='text' <?php echo ($checkuserOuter == FALSE ? "disabled" : "" ); ?> name='checkuser_local' value='<?php echo $checkuserValue; ?>'/> |
|
331 | + <input type='text' <?php echo ($checkuserOuter == FALSE ? "disabled" : ""); ?> name='checkuser_local' value='<?php echo $checkuserValue; ?>'/> |
|
332 | 332 | </td> |
333 | 333 | </tr> |
334 | 334 | </table> |
@@ -344,14 +344,14 @@ discard block |
||
344 | 344 | <p> |
345 | 345 | |
346 | 346 | <?php |
347 | - echo "<span id='redirect_label' style='" . ($realm == "" ? "color:#999999" : "" ) . "'><label for='redirect'>" . _("Redirect end users to own web page:") . "</label></span> |
|
348 | - <input type='checkbox' name='redirect' id='redirect' " . ($blacklisted === FALSE ? "" : "checked " ) . "onclick=' |
|
347 | + echo "<span id='redirect_label' style='" . ($realm == "" ? "color:#999999" : "") . "'><label for='redirect'>" . _("Redirect end users to own web page:") . "</label></span> |
|
348 | + <input type='checkbox' name='redirect' id='redirect' " . ($blacklisted === FALSE ? "" : "checked ") . "onclick=' |
|
349 | 349 | if (this.form.elements[\"redirect\"].checked != true) { |
350 | 350 | this.form.elements[\"redirect_target\"].setAttribute(\"disabled\", \"disabled\"); |
351 | 351 | } else { |
352 | 352 | this.form.elements[\"redirect_target\"].removeAttribute(\"disabled\"); |
353 | 353 | };'/> |
354 | - <input type='text' name='redirect_target' " . ($blacklisted !== FALSE ? "value='$blacklisted'" : "disabled" ) . "/>"; |
|
354 | + <input type='text' name='redirect_target' " . ($blacklisted !== FALSE ? "value='$blacklisted'" : "disabled") . "/>"; |
|
355 | 355 | ?> |
356 | 356 | </p> |
357 | 357 | |
@@ -375,7 +375,7 @@ discard block |
||
375 | 375 | function priority(string $eapType, bool $isenabled, int $priority) { |
376 | 376 | echo "<td><select id='$eapType-priority' name='$eapType-priority' " . (!$isenabled ? "disabled='disabled'" : "") . ">"; |
377 | 377 | for ($a = 1; $a < 7; $a = $a + 1) { |
378 | - echo "<option id='$eapType-$a' value='$a' " . ( $isenabled && $a == $priority ? "selected" : "" ) . ">$a</option>"; |
|
378 | + echo "<option id='$eapType-$a' value='$a' " . ($isenabled && $a == $priority ? "selected" : "") . ">$a</option>"; |
|
379 | 379 | } |
380 | 380 | echo "</select></td>"; |
381 | 381 | } |
@@ -137,7 +137,7 @@ |
||
137 | 137 | |
138 | 138 | $out .= 'Config.sb_user_file = """' . $this->mkSbUserFile() . '"""' . "\n"; |
139 | 139 | if (!empty($this->attributes['internal:realm'][0])) { |
140 | - $out .= 'Config.user_realm = "' . $this->attributes['internal:realm'][0] . "\"\n"; |
|
140 | + $out .= 'Config.user_realm = "' . $this->attributes['internal:realm'][0] . "\"\n"; |
|
141 | 141 | } |
142 | 142 | if(!empty($this->attributes['internal:hint_userinput_suffix'][0]) && $this->attributes['internal:hint_userinput_suffix'][0] == 1) { |
143 | 143 | $out .= "Config.hint_user_input = True\n"; |
@@ -124,8 +124,7 @@ |
||
124 | 124 | $out .= "Config.eap_inner = '" . $eapMethod['INNER'] . "'\n"; |
125 | 125 | if ($this->selectedEap == \core\common\EAP::EAPTYPE_TLS && isset($this->attributes['eap-specific:tls_use_other_id']) && $this->attributes['eap-specific:tls_use_other_id'][0] == 'on') { |
126 | 126 | $out .= "Config.use_other_tls_id = True\n"; |
127 | - } |
|
128 | - else { |
|
127 | + } else { |
|
129 | 128 | $out .= "Config.use_other_tls_id = False\n"; |
130 | 129 | } |
131 | 130 | $tou = $this->mkUserConsent(); |
@@ -33,12 +33,12 @@ discard block |
||
33 | 33 | public function writeInstaller() { |
34 | 34 | $installerPath = $this->installerBasename . ".py"; |
35 | 35 | $this->copyFile("main.py", $installerPath); |
36 | - $installer = fopen($installerPath,"a"); |
|
36 | + $installer = fopen($installerPath, "a"); |
|
37 | 37 | if ($installer === FALSE) { |
38 | 38 | throw new Exception("Unable to open installer file for writing!"); |
39 | 39 | } |
40 | - fwrite($installer,$this->writeMessages()); |
|
41 | - fwrite($installer,$this->writeConfigVars()); |
|
40 | + fwrite($installer, $this->writeMessages()); |
|
41 | + fwrite($installer, $this->writeConfigVars()); |
|
42 | 42 | fwrite($installer, "run_installer()\n"); |
43 | 43 | fclose($installer); |
44 | 44 | return($installerPath); |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | $out .= 'Messages.p12_title = "' . _("personal certificate file (p12 or pfx)") . "\"\n"; |
105 | 105 | $out .= 'Messages.save_wpa_conf = "' . _("Network Manager configuration failed, but we may generate a wpa_supplicant configuration file if you wish. Be warned that your connection password will be saved in this file as clear text.") . "\"\n"; |
106 | 106 | $out .= 'Messages.save_wpa_confirm = "' . _("Write the file") . "\"\n"; |
107 | - $out .= 'Messages.wrongUsernameFormat = "' ._("Error: Your username must be of the form 'xxx@institutionID' e.g. '[email protected]'!") . "\"\n"; |
|
107 | + $out .= 'Messages.wrongUsernameFormat = "' . _("Error: Your username must be of the form 'xxx@institutionID' e.g. '[email protected]'!") . "\"\n"; |
|
108 | 108 | $out .= 'Messages.wrong_realm = "' . _("Error: your username must be in the form of 'xxx@{}'. Please enter the username in the correct format.") . "\"\n"; |
109 | 109 | $out .= 'Messages.wrong_realm_suffix = "' . _("Error: your username must be in the form of 'xxx@institutionID' and end with '{}'. Please enter the username in the correct format.") . "\"\n"; |
110 | 110 | |
@@ -133,8 +133,8 @@ discard block |
||
133 | 133 | $out .= "Config.use_other_tls_id = False\n"; |
134 | 134 | } |
135 | 135 | $tou = $this->mkUserConsent(); |
136 | - $out .= 'Config.tou = ' . ( $tou ? '"""' . $tou . '"""' : 'None' ) . "\n"; |
|
137 | - $out .= 'Config.CA = """' . $this->mkCAfile() . '"""' . "\n"; |
|
136 | + $out .= 'Config.tou = ' . ($tou ? '"""' . $tou . '"""' : 'None') . "\n"; |
|
137 | + $out .= 'Config.CA = """' . $this->mkCAfile() . '"""' . "\n"; |
|
138 | 138 | $out .= "Config.anonymous_identity = '" . $this->determineOuterIdString() . "'\n"; |
139 | 139 | $out .= 'Config.init_info = """' . $this->mkIntro() . '"""' . "\n"; |
140 | 140 | $out .= 'Config.init_confirmation = "' . $this->mkProfileConfirmation() . "\"\n"; |
@@ -143,10 +143,10 @@ discard block |
||
143 | 143 | if (!empty($this->attributes['internal:realm'][0])) { |
144 | 144 | $out .= 'Config.user_realm = "' . $this->attributes['internal:realm'][0] . "\"\n"; |
145 | 145 | } |
146 | - if(!empty($this->attributes['internal:hint_userinput_suffix'][0]) && $this->attributes['internal:hint_userinput_suffix'][0] == 1) { |
|
146 | + if (!empty($this->attributes['internal:hint_userinput_suffix'][0]) && $this->attributes['internal:hint_userinput_suffix'][0] == 1) { |
|
147 | 147 | $out .= "Config.hint_user_input = True\n"; |
148 | 148 | } |
149 | - if(!empty($this->attributes['internal:verify_userinput_suffix'][0]) && $this->attributes['internal:verify_userinput_suffix'][0] == 1) { |
|
149 | + if (!empty($this->attributes['internal:verify_userinput_suffix'][0]) && $this->attributes['internal:verify_userinput_suffix'][0] == 1) { |
|
150 | 150 | $out .= "Config.verify_user_realm_input = True\n"; |
151 | 151 | } |
152 | 152 | return $out; |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | } |
187 | 187 | $out .= "'DNS:$oneServer'"; |
188 | 188 | } |
189 | - return "[" . $out. "]"; |
|
189 | + return "[" . $out . "]"; |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | return '[' . implode(', ', $outArray) . ']'; |
211 | 211 | } |
212 | 212 | |
213 | - private function mkCAfile(){ |
|
213 | + private function mkCAfile() { |
|
214 | 214 | $out = ''; |
215 | 215 | $cAlist = $this->attributes['internal:CAs'][0]; |
216 | 216 | foreach ($cAlist as $oneCa) { |
@@ -29,6 +29,6 @@ |
||
29 | 29 | $link = \core\ProfileSilverbullet::generateTokenLink($cleanToken); |
30 | 30 | header("Content-Type:text/html;charset=utf-8"); |
31 | 31 | ?> |
32 | -<h1 style='text-align:center;'><?php echo _("Invitation Token QR Code");?></h1> |
|
33 | -<img style='float:none' src='data:image/png;base64,<?php echo base64_encode($uiElements->pngInjectConsortiumLogo(\QRcode::png($link, FALSE, QR_ECLEVEL_Q, 11), 11));?>'/> |
|
34 | -<p>(<a href='<?php echo $link;?>'><?php echo $link;?>)</a></p> |
|
35 | 32 | \ No newline at end of file |
33 | +<h1 style='text-align:center;'><?php echo _("Invitation Token QR Code"); ?></h1> |
|
34 | +<img style='float:none' src='data:image/png;base64,<?php echo base64_encode($uiElements->pngInjectConsortiumLogo(\QRcode::png($link, FALSE, QR_ECLEVEL_Q, 11), 11)); ?>'/> |
|
35 | +<p>(<a href='<?php echo $link; ?>'><?php echo $link; ?>)</a></p> |
|
36 | 36 | \ No newline at end of file |
@@ -60,11 +60,11 @@ discard block |
||
60 | 60 | |
61 | 61 | $deco = new \web\lib\admin\PageDecoration(); |
62 | 62 | ?> |
63 | -<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $Gui->skinObject->findResourceUrl("CSS","cat-user.css");?>" /> |
|
63 | +<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $Gui->skinObject->findResourceUrl("CSS", "cat-user.css"); ?>" /> |
|
64 | 64 | <!-- JQuery --> |
65 | -<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/jquery.js") ?>"></script> |
|
66 | -<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/jquery-migrate.js") ?>"></script> |
|
67 | -<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/jquery-ui.js") ?>"></script> |
|
65 | +<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/jquery.js") ?>"></script> |
|
66 | +<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/jquery-migrate.js") ?>"></script> |
|
67 | +<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/jquery-ui.js") ?>"></script> |
|
68 | 68 | <!-- JQuery --> |
69 | 69 | <script type="text/javascript"> |
70 | 70 | if (screen.width <= 480) { |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | <div id="heading"> |
107 | 107 | <?php |
108 | 108 | print '<img src="' . $Gui->skinObject->findResourceUrl("IMAGES", "consortium_logo.png") . '" alt="Consortium Logo" style="float:right; padding-right:20px; padding-top:20px"/>'; |
109 | - print '<div id="motd">' . ( isset(CONFIG['APPEARANCE']['MOTD']) ? CONFIG['APPEARANCE']['MOTD'] : ' ' ) . '</div>'; |
|
109 | + print '<div id="motd">' . (isset(CONFIG['APPEARANCE']['MOTD']) ? CONFIG['APPEARANCE']['MOTD'] : ' ') . '</div>'; |
|
110 | 110 | print '<h1 style="padding-bottom:0px; height:1em;">' . sprintf(_("Welcome to %s"), CONFIG['APPEARANCE']['productname']) . '</h1> |
111 | 111 | <h2 style="padding-bottom:0px; height:0px; vertical-align:bottom;">' . CONFIG['APPEARANCE']['productname_long'] . '</h2>'; |
112 | 112 | echo '<table id="lang_select"><tr><td>'; |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | <span id="line1"><?php printf(_("%s installation made easy:"), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name']) ?></span> |
161 | 161 | <span id="line2"></span> |
162 | 162 | <span id="line3"></span> |
163 | - <span id="line4"><?php echo sprintf(_("Custom built for your %s"),$Gui->nomenclature_inst) ?></span> |
|
163 | + <span id="line4"><?php echo sprintf(_("Custom built for your %s"), $Gui->nomenclature_inst) ?></span> |
|
164 | 164 | <span id="line5"> |
165 | 165 | <?php |
166 | 166 | if (isset(CONFIG_CONFASSISTANT['CONSORTIUM']['signer_name']) && CONFIG_CONFASSISTANT['CONSORTIUM']['signer_name'] != "") { |
@@ -81,7 +81,7 @@ |
||
81 | 81 | <?php if (empty($_REQUEST['idp'])) { ?> |
82 | 82 | <div id="front_page"> |
83 | 83 | <?php |
84 | - echo $divs->div_top_welcome(); |
|
84 | + echo $divs->div_top_welcome(); |
|
85 | 85 | // echo $divs->div_roller(); |
86 | 86 | // echo $divs->div_main_button(); ?> |
87 | 87 | </div> <!-- id="front_page" --> |
@@ -18,9 +18,9 @@ discard block |
||
18 | 18 | ?> |
19 | 19 | |
20 | 20 | <!-- JQuery --> |
21 | -<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/jquery.js") ?>"></script> |
|
22 | -<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/jquery-migrate-1.2.1.js") ?>"></script> |
|
23 | -<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/jquery-ui.js") ?>"></script> |
|
21 | +<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/jquery.js") ?>"></script> |
|
22 | +<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/jquery-migrate-1.2.1.js") ?>"></script> |
|
23 | +<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/jquery-ui.js") ?>"></script> |
|
24 | 24 | <!-- JQuery --> |
25 | 25 | |
26 | 26 | <script type="text/javascript"> |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | include("user/js/cat_js.php"); |
49 | 49 | ?> |
50 | 50 | var loading_ico = new Image(); |
51 | - loading_ico.src = "<?php echo $Gui->skinObject->findResourceUrl("IMAGES","icons/loading51.gif")?>"; |
|
51 | + loading_ico.src = "<?php echo $Gui->skinObject->findResourceUrl("IMAGES", "icons/loading51.gif")?>"; |
|
52 | 52 | </script> |
53 | 53 | <?php $Gui->langObject->setTextDomain("web_user"); ?> |
54 | 54 | <!-- DiscoJuice --> |
@@ -57,9 +57,9 @@ discard block |
||
57 | 57 | front_page = 0; |
58 | 58 | var lang = "<?php echo($Gui->langObject->getLang()) ?>"; |
59 | 59 | </script> |
60 | -<link rel="stylesheet" type="text/css" href="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","discojuice/css/discojuice.css")?>" /> |
|
60 | +<link rel="stylesheet" type="text/css" href="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "discojuice/css/discojuice.css")?>" /> |
|
61 | 61 | <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"> |
62 | -<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $Gui->skinObject->findResourceUrl("CSS","cat-user.css");?>" /> |
|
62 | +<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $Gui->skinObject->findResourceUrl("CSS", "cat-user.css"); ?>" /> |
|
63 | 63 | </head> |
64 | 64 | <body> |
65 | 65 | <div id="wrap"> |
@@ -67,14 +67,14 @@ discard block |
||
67 | 67 | <?php echo $divs->div_heading($visibility); ?> |
68 | 68 | <div id="main_page"> |
69 | 69 | <div id="loading_ico"> |
70 | - <?php echo _("Authenticating") . "..." ?><br><img src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES","icons/loading51.gif")?>" alt="Authenticating ..."/> |
|
70 | + <?php echo _("Authenticating") . "..." ?><br><img src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES", "icons/loading51.gif")?>" alt="Authenticating ..."/> |
|
71 | 71 | </div> |
72 | 72 | <div id="info_overlay"> <!-- device info --> |
73 | 73 | <div id="info_window"></div> |
74 | - <img id="info_menu_close" class="close_button" src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES","icons/button_cancel.png")?>" ALT="Close"/> |
|
74 | + <img id="info_menu_close" class="close_button" src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES", "icons/button_cancel.png")?>" ALT="Close"/> |
|
75 | 75 | </div> |
76 | 76 | <div id="main_menu_info" style="display:none"> <!-- stuff triggered form main menu --> |
77 | - <img id="main_menu_close" class="close_button" src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES","icons/button_cancel.png")?>" ALT="Close"/> |
|
77 | + <img id="main_menu_close" class="close_button" src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES", "icons/button_cancel.png")?>" ALT="Close"/> |
|
78 | 78 | <div id="main_menu_content"></div> |
79 | 79 | </div> |
80 | 80 | <div id="main_body"> |