Passed
Push — release_2_0 ( 0d5fd5...cf68a9 )
by Maja
08:03
created
devices/ms/Files/geant_link.inc 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
   nsArray::Set Delete_files "GEANTLink-ARM64.msi"
93 93
   File "GEANTLink-ARM64.msi"
94 94
   IfSilent +2
95
-  MessageBox MB_OK  "<?php WindowsCommon::echo_nsi( _("An additional piece of software 'GEANTlink' needs to be installed. This installation requires Administrator rights; you will be prompted to give permission for that action."))?>"
95
+  MessageBox MB_OK  "<?php WindowsCommon::echo_nsi(_("An additional piece of software 'GEANTlink' needs to be installed. This installation requires Administrator rights; you will be prompted to give permission for that action."))?>"
96 96
   !insertmacro debug_cat 1 "Run GEANTLink installer"
97 97
   !insertmacro debug_cat 3 'Execute: msiexec.exe /i "$OUTDIR\GEANTLink-$Platform.msi" REBOOT=Supress'
98 98
   ClearErrors
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
   Pop $rebootRequired
105 105
   ${Else}
106 106
   IfSilent +2
107
-  MessageBox MB_OK "<?php WindowsCommon::echo_nsi( _("Error installing GEANTLink.\$\\nEmbedded installer didn't complete succesfully."))?>"
107
+  MessageBox MB_OK "<?php WindowsCommon::echo_nsi(_("Error installing GEANTLink.\$\\nEmbedded installer didn't complete succesfully."))?>"
108 108
   Quit
109 109
   ${EndIf}
110 110
   Cont2:
Please login to merge, or discard this patch.
devices/ms/WindowsCommon.php 1 patch
Spacing   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
         if (isset($this->LANGS[$this->languageInstance->getLang()])) {
135 135
             $language = $this->LANGS[$this->languageInstance->getLang()];
136 136
             $this->lang = $language['nsis'];
137
-            $this->codePage = 'cp' . $language['cp'];
137
+            $this->codePage = 'cp'.$language['cp'];
138 138
         } else {
139 139
             $this->lang = 'English';
140 140
             $this->codePage = 'cp1252';
@@ -155,8 +155,8 @@  discard block
 block discarded – undo
155 155
         $out .= sprintf(_("%s installer will be in the form of an EXE file. It will configure %s on your device, by creating wireless network profiles.<p>When you click the download button, the installer will be saved by your browser. Copy it to the machine you want to configure and execute."), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'], CONFIG_CONFASSISTANT['CONSORTIUM']['display_name']);
156 156
         $out .= "<p>";
157 157
         if ($ssidCount > $configCount) {
158
-            $out .= sprintf(ngettext("In addition to <strong>%s</strong> the installer will also configure access to:", "In addition to <strong>%s</strong> the installer will also configure access to the following networks:", $ssidCount - $configCount), implode(', ', $configList)) . " ";
159
-            $out .= '<strong>' . join('</strong>, <strong>', array_diff(array_keys($ssids), $configList)) . '</strong>';
158
+            $out .= sprintf(ngettext("In addition to <strong>%s</strong> the installer will also configure access to:", "In addition to <strong>%s</strong> the installer will also configure access to the following networks:", $ssidCount - $configCount), implode(', ', $configList))." ";
159
+            $out .= '<strong>'.join('</strong>, <strong>', array_diff(array_keys($ssids), $configList)).'</strong>';
160 160
             $out .= "<p>";
161 161
         }
162 162
 // TODO - change this below
@@ -172,8 +172,8 @@  discard block
 block discarded – undo
172 172
             $out .= _("When you are connecting to the network for the first time, Windows will pop up a login box, where you should enter your user name and password. This information will be saved so that you will reconnect to the network automatically each time you are in the range.");
173 173
             if ($ssidCount > 1) {
174 174
                 $out .= "<p>";
175
-                $out .= _("You will be required to enter the same credentials for each of the configured networks:") . " ";
176
-                $out .= '<strong>' . join('</strong>, <strong>', array_keys($ssids)) . '</strong>';
175
+                $out .= _("You will be required to enter the same credentials for each of the configured networks:")." ";
176
+                $out .= '<strong>'.join('</strong>, <strong>', array_keys($ssids)).'</strong>';
177 177
             }
178 178
         }
179 179
         return $out;
@@ -243,11 +243,11 @@  discard block
 block discarded – undo
243 243
         $logoCount = count($logosToPlace);
244 244
         if ($logoCount > 0) {
245 245
             $voffset = $freeTop;
246
-            $freeSpace = (int)round($this->background['freeHeight'] / ($logoCount + 1));
246
+            $freeSpace = (int) round($this->background['freeHeight'] / ($logoCount + 1));
247 247
             foreach ($logosToPlace as $logo) {
248 248
                 $voffset += $freeSpace;
249 249
                 $logoSize = $logo->getImageGeometry();
250
-                $hoffset = (int)round(($bgImageSize['width'] - $logoSize['width']) / 2);
250
+                $hoffset = (int) round(($bgImageSize['width'] - $logoSize['width']) / 2);
251 251
                 $bgImage->compositeImage($logo, $logo->getImageCompose(), $hoffset, $voffset);
252 252
                 $voffset += $logoSize['height'];
253 253
                 }
@@ -262,13 +262,13 @@  discard block
 block discarded – undo
262 262
      * @return string path to signed installer
263 263
      */
264 264
     protected function signInstaller() {
265
-        $fileName = $this->installerBasename . '.exe';
265
+        $fileName = $this->installerBasename.'.exe';
266 266
         if (!$this->sign) {
267 267
             rename("installer.exe", $fileName);
268 268
             return $fileName;
269 269
         }
270 270
         // are actually signing
271
-        $outputFromSigning = system($this->sign . " installer.exe '$fileName' > /dev/null");
271
+        $outputFromSigning = system($this->sign." installer.exe '$fileName' > /dev/null");
272 272
         if ($outputFromSigning === FALSE) {
273 273
             $this->loggerInstance->debug(2, "Signing the WindowsCommon installer $fileName FAILED!\n");
274 274
         }
@@ -282,15 +282,15 @@  discard block
 block discarded – undo
282 282
      */
283 283
     protected function compileNSIS() {
284 284
         if (CONFIG_CONFASSISTANT['NSIS_VERSION'] >= 3) {
285
-            $makensis = CONFIG_CONFASSISTANT['PATHS']['makensis'] . " -INPUTCHARSET UTF8";
285
+            $makensis = CONFIG_CONFASSISTANT['PATHS']['makensis']." -INPUTCHARSET UTF8";
286 286
         } else {
287 287
             $makensis = CONFIG_CONFASSISTANT['PATHS']['makensis'];
288 288
         }
289 289
         $lcAll = getenv("LC_ALL");
290 290
         putenv("LC_ALL=en_US.UTF-8");
291
-        $command = $makensis . ' -V4 cat.NSI > nsis.log 2>&1';
291
+        $command = $makensis.' -V4 cat.NSI > nsis.log 2>&1';
292 292
         system($command);
293
-        putenv("LC_ALL=" . $lcAll);
293
+        putenv("LC_ALL=".$lcAll);
294 294
         $this->loggerInstance->debug(4, "compileNSIS:$command\n");
295 295
     }
296 296
 
@@ -306,10 +306,10 @@  discard block
 block discarded – undo
306 306
             'email' => 'SUPPORT',
307 307
             'url' => 'URL',
308 308
         ];
309
-        $s = "support_" . $type . "_substitute";
309
+        $s = "support_".$type."_substitute";
310 310
         $substitute = $this->translateString($this->$s, $this->codePage);
311
-        $returnValue = !empty($attr['support:' . $type][0]) ? $attr['support:' .  $type][0] : $substitute;
312
-        return '!define ' . $supportString[$type] . ' "' . $returnValue . '"' . "\n";
311
+        $returnValue = !empty($attr['support:'.$type][0]) ? $attr['support:'.$type][0] : $substitute;
312
+        return '!define '.$supportString[$type].' "'.$returnValue.'"'."\n";
313 313
     }
314 314
     
315 315
     /**
@@ -319,20 +319,20 @@  discard block
 block discarded – undo
319 319
      * @return string
320 320
      */
321 321
     protected function writeNsisDefines($attr) {
322
-        $fcontents = "\n" . '!define NSIS_MAJOR_VERSION ' . CONFIG_CONFASSISTANT['NSIS_VERSION'];
322
+        $fcontents = "\n".'!define NSIS_MAJOR_VERSION '.CONFIG_CONFASSISTANT['NSIS_VERSION'];
323 323
         if ($attr['internal:profile_count'][0] > 1) {
324
-            $fcontents .= "\n" . '!define USER_GROUP "' . $this->translateString(str_replace('"', '$\\"', $attr['profile:name'][0]), $this->codePage) . '"
324
+            $fcontents .= "\n".'!define USER_GROUP "'.$this->translateString(str_replace('"', '$\\"', $attr['profile:name'][0]), $this->codePage).'"
325 325
 ';
326 326
         }
327
-        $fcontents .=  '
328
-Caption "' . $this->translateString(sprintf(WindowsCommon::sprint_nsi(_("%s installer for %s")), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'], $attr['general:instname'][0]), $this->codePage) . '"
329
-!define APPLICATION "' . $this->translateString(sprintf(WindowsCommon::sprint_nsi(_("%s installer for %s")), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'], $attr['general:instname'][0]), $this->codePage) . '"
330
-!define VERSION "' . \core\CAT::VERSION_MAJOR . '.' . \core\CAT::VERSION_MINOR . '"
327
+        $fcontents .= '
328
+Caption "' . $this->translateString(sprintf(WindowsCommon::sprint_nsi(_("%s installer for %s")), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'], $attr['general:instname'][0]), $this->codePage).'"
329
+!define APPLICATION "' . $this->translateString(sprintf(WindowsCommon::sprint_nsi(_("%s installer for %s")), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'], $attr['general:instname'][0]), $this->codePage).'"
330
+!define VERSION "' . \core\CAT::VERSION_MAJOR.'.'.\core\CAT::VERSION_MINOR.'"
331 331
 !define INSTALLER_NAME "installer.exe"
332
-!define LANG "' . $this->lang . '"
333
-!define LOCALE "' . preg_replace('/\..*$/', '', CONFIG['LANGUAGES'][$this->languageInstance->getLang()]['locale']) . '"
332
+!define LANG "' . $this->lang.'"
333
+!define LOCALE "' . preg_replace('/\..*$/', '', CONFIG['LANGUAGES'][$this->languageInstance->getLang()]['locale']).'"
334 334
 ;--------------------------------
335
-!define ORGANISATION "' . $this->translateString($attr['general:instname'][0], $this->codePage) . '"
335
+!define ORGANISATION "' . $this->translateString($attr['general:instname'][0], $this->codePage).'"
336 336
 ';
337 337
         $fcontents .= $this->getSupport($attr, 'email');
338 338
         $fcontents .= $this->getSupport($attr, 'url');                
@@ -340,18 +340,18 @@  discard block
 block discarded – undo
340 340
             $fcontents .= '!define WIRED
341 341
         ';
342 342
         }
343
-        $fcontents .= '!define PROVIDERID "urn:UUID:' . $this->deviceUUID . '"
343
+        $fcontents .= '!define PROVIDERID "urn:UUID:'.$this->deviceUUID.'"
344 344
 ';
345 345
         if (!empty($attr['internal:realm'][0])) {
346
-            $fcontents .= '!define REALM "' . $attr['internal:realm'][0] . '"
346
+            $fcontents .= '!define REALM "'.$attr['internal:realm'][0].'"
347 347
 ';
348 348
         }
349
-        if(!empty($attr['internal:hint_userinput_suffix'][0]) && $attr['internal:hint_userinput_suffix'][0] == 1) {
350
-            $fcontents .= '!define HINT_USER_INPUT "' . $attr['internal:hint_userinput_suffix'][0] . '"
349
+        if (!empty($attr['internal:hint_userinput_suffix'][0]) && $attr['internal:hint_userinput_suffix'][0] == 1) {
350
+            $fcontents .= '!define HINT_USER_INPUT "'.$attr['internal:hint_userinput_suffix'][0].'"
351 351
 ';
352 352
         }
353
-        if(!empty($attr['internal:verify_userinput_suffix'][0]) && $attr['internal:verify_userinput_suffix'][0] == 1) {
354
-            $fcontents .= '!define VERIFY_USER_REALM_INPUT "' . $attr['internal:verify_userinput_suffix'][0] . '"
353
+        if (!empty($attr['internal:verify_userinput_suffix'][0]) && $attr['internal:verify_userinput_suffix'][0] == 1) {
354
+            $fcontents .= '!define VERIFY_USER_REALM_INPUT "'.$attr['internal:verify_userinput_suffix'][0].'"
355 355
 ';
356 356
         }
357 357
         $fcontents .= $this->msInfoFile($attr);
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
             $out .= '!define EXTERNAL_INFO "';
373 373
 //  $this->loggerInstance->debug(4,"Info file type ".$attr['support:info_file'][0]['mime']."\n");
374 374
             if ($attr['internal:info_file'][0]['mime'] == 'rtf') {
375
-                $out = '!define LICENSE_FILE "' . $attr['internal:info_file'][0]['name'];
375
+                $out = '!define LICENSE_FILE "'.$attr['internal:info_file'][0]['name'];
376 376
             } elseif ($attr['internal:info_file'][0]['mime'] == 'txt') {
377 377
                 $infoFile = file_get_contents($attr['internal:info_file'][0]['name']);
378 378
                 if ($infoFile === FALSE) {
@@ -381,14 +381,14 @@  discard block
 block discarded – undo
381 381
                 if (CONFIG_CONFASSISTANT['NSIS_VERSION'] >= 3) {
382 382
                     $infoFileConverted = $infoFile;
383 383
                 } else {
384
-                    $infoFileConverted = iconv('UTF-8', $this->codePage . '//TRANSLIT', $infoFile);
384
+                    $infoFileConverted = iconv('UTF-8', $this->codePage.'//TRANSLIT', $infoFile);
385 385
                 }
386 386
                 if ($infoFileConverted !== FALSE && strlen($infoFileConverted) > 0) {
387 387
                     file_put_contents('info_f.txt', $infoFileConverted);
388 388
                     $out = '!define LICENSE_FILE " info_f.txt';
389 389
                 }
390 390
             } else {
391
-                $out = '!define EXTERNAL_INFO "' . $attr['internal:info_file'][0]['name'];
391
+                $out = '!define EXTERNAL_INFO "'.$attr['internal:info_file'][0]['name'];
392 392
             }
393 393
 
394 394
             $out .= "\"\n";
Please login to merge, or discard this patch.
devices/ms/Device_Vista7.php 1 patch
Spacing   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
                 $delProfiles[] = $ssid;
72 72
             }
73 73
             if ($cipher == 'TKIP') {
74
-                $delProfiles[] = $ssid . ' (TKIP)';
74
+                $delProfiles[] = $ssid.' (TKIP)';
75 75
             }
76 76
         }
77 77
 
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
             $iterator = 0;
82 82
             foreach ($allSSID as $ssid => $cipher) {
83 83
                 if ($cipher == 'TKIP') {
84
-                    $windowsProfile[$iterator] = $this->writeWLANprofile($ssid . ' (TKIP)', $ssid, 'WPA', 'TKIP', $eapConfig, $iterator);
84
+                    $windowsProfile[$iterator] = $this->writeWLANprofile($ssid.' (TKIP)', $ssid, 'WPA', 'TKIP', $eapConfig, $iterator);
85 85
                     $iterator++;
86 86
                 }
87 87
                 $windowsProfile[$iterator] = $this->writeWLANprofile($ssid, $ssid, 'WPA2', 'AES', $eapConfig, $iterator);
@@ -142,10 +142,10 @@  discard block
 block discarded – undo
142 142
         $profileFileCont = '<EAPConfig><EapHostConfig xmlns="http://www.microsoft.com/provisioning/EapHostConfig">
143 143
 <EapMethod>
144 144
 <Type xmlns="http://www.microsoft.com/provisioning/EapCommon">' .
145
-                $this->selectedEap["OUTER"] . '</Type>
145
+                $this->selectedEap["OUTER"].'</Type>
146 146
 <VendorId xmlns="http://www.microsoft.com/provisioning/EapCommon">0</VendorId>
147 147
 <VendorType xmlns="http://www.microsoft.com/provisioning/EapCommon">0</VendorType>
148
-<AuthorId xmlns="http://www.microsoft.com/provisioning/EapCommon">' . $authorId . '</AuthorId>
148
+<AuthorId xmlns="http://www.microsoft.com/provisioning/EapCommon">' . $authorId.'</AuthorId>
149 149
 </EapMethod>
150 150
 ';
151 151
 
@@ -158,9 +158,9 @@  discard block
 block discarded – undo
158 158
             $profileFileCont .= '
159 159
 <Config xmlns="http://www.microsoft.com/provisioning/EapHostConfig">
160 160
 <EAPIdentityProviderList xmlns="urn:ietf:params:xml:ns:yang:ietf-eap-metadata">
161
-<EAPIdentityProvider ID="' . $this->deviceUUID . '" namespace="urn:UUID">
161
+<EAPIdentityProvider ID="' . $this->deviceUUID.'" namespace="urn:UUID">
162 162
 <ProviderInfo>
163
-<DisplayName>' . $this->translateString($attr['general:instname'][0], $this->codePage) . '</DisplayName>
163
+<DisplayName>' . $this->translateString($attr['general:instname'][0], $this->codePage).'</DisplayName>
164 164
 </ProviderInfo>
165 165
 <AuthenticationMethods>
166 166
 <AuthenticationMethod>
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
                 if ($outerUser == '') {
173 173
                     $profileFileCont .= '<AnonymousIdentity>@</AnonymousIdentity>';
174 174
                 } else {
175
-                    $profileFileCont .= '<AnonymousIdentity>' . $outerUser . '@' . $realm . '</AnonymousIdentity>';
175
+                    $profileFileCont .= '<AnonymousIdentity>'.$outerUser.'@'.$realm.'</AnonymousIdentity>';
176 176
                 }
177 177
             }
178 178
             $profileFileCont .= '</ClientSideCredential>
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
             $profileFileCont .= '
191 191
 </ServerSideCredential>
192 192
 <InnerAuthenticationMethod>
193
-<NonEAPAuthMethod>' .$innerMethod. '</NonEAPAuthMethod>
193
+<NonEAPAuthMethod>' .$innerMethod.'</NonEAPAuthMethod>
194 194
 </InnerAuthenticationMethod>
195 195
 <VendorSpecific>
196 196
 <SessionResumption>false</SessionResumption>
@@ -215,11 +215,11 @@  discard block
 block discarded – undo
215 215
 </eapTls:CredentialsSource>
216 216
 <eapTls:ServerValidation>
217 217
 <eapTls:DisableUserPromptForServerValidation>true</eapTls:DisableUserPromptForServerValidation>
218
-<eapTls:ServerNames>' . $servers . '</eapTls:ServerNames>';
218
+<eapTls:ServerNames>' . $servers.'</eapTls:ServerNames>';
219 219
             if ($caArray) {
220 220
                 foreach ($caArray as $certAuthority) {
221 221
                     if ($certAuthority['root']) {
222
-                        $profileFileCont .= "<eapTls:TrustedRootCA>" . $certAuthority['sha1'] . "</eapTls:TrustedRootCA>\n";
222
+                        $profileFileCont .= "<eapTls:TrustedRootCA>".$certAuthority['sha1']."</eapTls:TrustedRootCA>\n";
223 223
                     }
224 224
                 }
225 225
             }
@@ -251,11 +251,11 @@  discard block
 block discarded – undo
251 251
 <msPeap:EapType>
252 252
 <msPeap:ServerValidation>
253 253
 <msPeap:DisableUserPromptForServerValidation>true</msPeap:DisableUserPromptForServerValidation> 
254
-<msPeap:ServerNames>' . $servers . '</msPeap:ServerNames>';
254
+<msPeap:ServerNames>' . $servers.'</msPeap:ServerNames>';
255 255
             if ($caArray) {
256 256
                 foreach ($caArray as $certAuthority) {
257 257
                     if ($certAuthority['root']) {
258
-                        $vistaExt .= "<msPeap:TrustedRootCA>" . $certAuthority['sha1'] . "</msPeap:TrustedRootCA>\n";
258
+                        $vistaExt .= "<msPeap:TrustedRootCA>".$certAuthority['sha1']."</msPeap:TrustedRootCA>\n";
259 259
                     }
260 260
                 }
261 261
             }
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
 <msChapV2:UseWinLogonCredentials>false</msChapV2:UseWinLogonCredentials> 
269 269
 </msChapV2:EapType>
270 270
 </baseEap:Eap>
271
-<msPeap:EnableQuarantineChecks>' . $nea . '</msPeap:EnableQuarantineChecks>
271
+<msPeap:EnableQuarantineChecks>' . $nea.'</msPeap:EnableQuarantineChecks>
272 272
 <msPeap:RequireCryptoBinding>false</msPeap:RequireCryptoBinding>
273 273
 </msPeap:EapType>
274 274
 </baseEap:Eap>
@@ -280,11 +280,11 @@  discard block
 block discarded – undo
280 280
 <EapType xmlns="http://www.microsoft.com/provisioning/MsPeapConnectionPropertiesV1">
281 281
 <ServerValidation>
282 282
 <DisableUserPromptForServerValidation>true</DisableUserPromptForServerValidation>
283
-<ServerNames>' . $servers . '</ServerNames>';
283
+<ServerNames>' . $servers.'</ServerNames>';
284 284
             if ($caArray) {
285 285
                 foreach ($caArray as $certAuthority) {
286 286
                     if ($certAuthority['root']) {
287
-                        $w7Ext .= "<TrustedRootCA>" . $certAuthority['sha1'] . "</TrustedRootCA>\n";
287
+                        $w7Ext .= "<TrustedRootCA>".$certAuthority['sha1']."</TrustedRootCA>\n";
288 288
                     }
289 289
                 }
290 290
             }
@@ -297,14 +297,14 @@  discard block
 block discarded – undo
297 297
 <UseWinLogonCredentials>false</UseWinLogonCredentials> 
298 298
 </EapType>
299 299
 </Eap>
300
-<EnableQuarantineChecks>' . $nea . '</EnableQuarantineChecks>
300
+<EnableQuarantineChecks>' . $nea.'</EnableQuarantineChecks>
301 301
 <RequireCryptoBinding>false</RequireCryptoBinding>
302 302
 ';
303 303
             if ($useAnon) {
304 304
                 $w7Ext .= '<PeapExtensions>
305 305
 <IdentityPrivacy xmlns="http://www.microsoft.com/provisioning/MsPeapConnectionPropertiesV2">
306 306
 <EnableIdentityPrivacy>true</EnableIdentityPrivacy>
307
-<AnonymousUserName>' . $outerUser . '</AnonymousUserName>
307
+<AnonymousUserName>' . $outerUser.'</AnonymousUserName>
308 308
 </IdentityPrivacy>
309 309
 </PeapExtensions>
310 310
             ';
@@ -322,8 +322,8 @@  discard block
 block discarded – undo
322 322
         $profileFileContEnd = '</EapHostConfig></EAPConfig>
323 323
 ';
324 324
         $returnArray = [];
325
-        $returnArray['vista'] = $profileFileCont . $vistaExt . $profileFileContEnd;
326
-        $returnArray['w7'] = $profileFileCont . $w7Ext . $profileFileContEnd;
325
+        $returnArray['vista'] = $profileFileCont.$vistaExt.$profileFileContEnd;
326
+        $returnArray['w7'] = $profileFileCont.$w7Ext.$profileFileContEnd;
327 327
         return $returnArray;
328 328
     }
329 329
 
@@ -342,10 +342,10 @@  discard block
 block discarded – undo
342 342
     private function writeWLANprofile($wlanProfileName, $ssid, $auth, $encryption, $eapConfig, $profileNumber) {
343 343
         $profileFileCont = '<?xml version="1.0"?>
344 344
 <WLANProfile xmlns="http://www.microsoft.com/networking/WLAN/profile/v1">
345
-<name>' . $wlanProfileName . '</name>
345
+<name>' . $wlanProfileName.'</name>
346 346
 <SSIDConfig>
347 347
 <SSID>
348
-<name>' . $ssid . '</name>
348
+<name>' . $ssid.'</name>
349 349
 </SSID>
350 350
 <nonBroadcast>true</nonBroadcast>
351 351
 </SSIDConfig>
@@ -355,8 +355,8 @@  discard block
 block discarded – undo
355 355
 <MSM>
356 356
 <security>
357 357
 <authEncryption>
358
-<authentication>' . $auth . '</authentication>
359
-<encryption>' . $encryption . '</encryption>
358
+<authentication>' . $auth.'</authentication>
359
+<encryption>' . $encryption.'</encryption>
360 360
 <useOneX>true</useOneX>
361 361
 </authEncryption>
362 362
 ';
@@ -386,9 +386,9 @@  discard block
 block discarded – undo
386 386
             mkdir('vista');
387 387
         }
388 388
         $vistaFileName = "vista/wlan_prof-$profileNumber.xml";
389
-        file_put_contents($vistaFileName, $profileFileCont . $eapConfig['vista'] . $closing);
389
+        file_put_contents($vistaFileName, $profileFileCont.$eapConfig['vista'].$closing);
390 390
         $sevenFileName = "w7/wlan_prof-$profileNumber.xml";
391
-        file_put_contents($sevenFileName, $profileFileCont . $eapConfig['w7'] . $closing);
391
+        file_put_contents($sevenFileName, $profileFileCont.$eapConfig['w7'].$closing);
392 392
         $this->loggerInstance->debug(2, "Installer has been written into directory $this->FPATH\n");
393 393
         $this->loggerInstance->debug(4, "WLAN_Profile:$wlanProfileName:$encryption\n");
394 394
         return("\"$wlanProfileName\" \"$encryption\"");
@@ -424,8 +424,8 @@  discard block
 block discarded – undo
424 424
             mkdir('vista');
425 425
         }
426 426
         
427
-        file_put_contents("vista/lan_prof.xml", $profileFileCont . $eapConfig['vista'] . $closing);
428
-        file_put_contents("w7/lan_prof.xml", $profileFileCont . $eapConfig['w7'] . $closing);
427
+        file_put_contents("vista/lan_prof.xml", $profileFileCont.$eapConfig['vista'].$closing);
428
+        file_put_contents("w7/lan_prof.xml", $profileFileCont.$eapConfig['w7'].$closing);
429 429
         
430 430
     }
431 431
 
@@ -439,7 +439,7 @@  discard block
 block discarded – undo
439 439
     private function writeMainNSH($eap, $attr) {
440 440
         $this->loggerInstance->debug(4, "writeMainNSH");
441 441
         $this->loggerInstance->debug(4, $attr);
442
-        $this->loggerInstance->debug(4, "MYLANG=" . $this->lang . "\n");
442
+        $this->loggerInstance->debug(4, "MYLANG=".$this->lang."\n");
443 443
 
444 444
         $eapOptions = [
445 445
             \core\common\EAP::PEAP => ['str' => 'PEAP', 'exec' => 'user'],
@@ -470,8 +470,8 @@  discard block
 block discarded – undo
470 470
         $this->loggerInstance->debug(4, "EAP_STR=$eapStr\n");
471 471
         $this->loggerInstance->debug(4, $eap);
472 472
 
473
-        $fcontents .= '!define ' . $eapStr;
474
-        $fcontents .= "\n" . '!define EXECLEVEL "' . $execLevel . '"';
473
+        $fcontents .= '!define '.$eapStr;
474
+        $fcontents .= "\n".'!define EXECLEVEL "'.$execLevel.'"';
475 475
         $fcontents .= $this->writeNsisDefines($attr);
476 476
         file_put_contents('main.nsh', $fcontents);
477 477
     }
@@ -500,7 +500,7 @@  discard block
 block discarded – undo
500 500
         }
501 501
         foreach ($caArray as $certAuthority) {
502 502
             $store = $certAuthority['root'] ? "root" : "ca";
503
-            $contentCerts .= '!insertmacro install_ca_cert "' . $certAuthority['file'] . '" "' . $certAuthority['sha1'] . '" "' . $store . "\"\n";
503
+            $contentCerts .= '!insertmacro install_ca_cert "'.$certAuthority['file'].'" "'.$certAuthority['sha1'].'" "'.$store."\"\n";
504 504
         }
505 505
         fwrite($fileHandleCerts, $contentCerts);
506 506
         fclose($fileHandleCerts);
@@ -515,7 +515,7 @@  discard block
 block discarded – undo
515 515
      */
516 516
     private function copyFiles($eap) {
517 517
         $this->loggerInstance->debug(4, "copyFiles start\n");
518
-        $this->loggerInstance->debug(4, "code_page=" . $this->codePage . "\n");
518
+        $this->loggerInstance->debug(4, "code_page=".$this->codePage."\n");
519 519
         $this->copyBasicFiles();
520 520
 
521 521
         switch ($eap["OUTER"]) {
Please login to merge, or discard this patch.
devices/chromebook/Device_chromebook.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
         $cryptoJson = openssl_encrypt($clearJson, 'AES-256-CBC', $encryptionKey, OPENSSL_RAW_DATA, $initVector);
118 118
         $hmac = hash_hmac("sha1", $cryptoJson, $encryptionKey, TRUE);
119 119
 
120
-        $this->loggerInstance->debug(4, "Clear = $clearJson\nSalt = $salt\nPW = " . $password . "\nb(IV) = " . base64_encode($initVector) . "\nb(Cipher) = " . base64_encode($cryptoJson) . "\nb(HMAC) = " . base64_encode($hmac));
120
+        $this->loggerInstance->debug(4, "Clear = $clearJson\nSalt = $salt\nPW = ".$password."\nb(IV) = ".base64_encode($initVector)."\nb(Cipher) = ".base64_encode($cryptoJson)."\nb(HMAC) = ".base64_encode($hmac));
121 121
 
122 122
         // now, generate the container that holds all the crypto data
123 123
         $finalArray = [
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
      */
189 189
     private function wiredBlock($eapdetails) {
190 190
         return [
191
-            "GUID" => \core\common\Entity::uuid('', "wired-dot1x-ethernet") . "}",
191
+            "GUID" => \core\common\Entity::uuid('', "wired-dot1x-ethernet")."}",
192 192
             "Name" => "eduroam configuration (wired network)",
193 193
             "Remove" => false,
194 194
             "Type" => "Ethernet",
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
         // if silverbullet, we deliver the client cert inline
229 229
 
230 230
         if ($selectedEap == \core\common\EAP::EAPTYPE_SILVERBULLET) {
231
-            $eaparray['ClientCertRef'] = "[" . $this->clientCert['GUID'] . "]";
231
+            $eaparray['ClientCertRef'] = "[".$this->clientCert['GUID']."]";
232 232
             $eaparray['ClientCertType'] = "Ref";
233 233
         }
234 234
 
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
         $jsonArray = ["Type" => "UnencryptedConfiguration"];
262 262
 
263 263
         foreach ($this->attributes['internal:CAs'][0] as $ca) {
264
-            $caRefs[] = "{" . $ca['uuid'] . "}";
264
+            $caRefs[] = "{".$ca['uuid']."}";
265 265
         }
266 266
         // define CA certificates
267 267
         foreach ($this->attributes['internal:CAs'][0] as $ca) {
@@ -271,15 +271,15 @@  discard block
 block discarded – undo
271 271
             if ($caSanitized1 === FALSE) {
272 272
                 throw new Exception("Error cropping PEM data at its BEGIN marker.");
273 273
             }
274
-            $this->loggerInstance->debug(4, $caSanitized1 . "\n");
274
+            $this->loggerInstance->debug(4, $caSanitized1."\n");
275 275
             // remove \n
276 276
             $caSanitized = str_replace("\n", "", $caSanitized1);
277
-            $jsonArray["Certificates"][] = ["GUID" => "{" . $ca['uuid'] . "}", "Remove" => false, "Type" => "Authority", "X509" => $caSanitized];
278
-            $this->loggerInstance->debug(3, $caSanitized . "\n");
277
+            $jsonArray["Certificates"][] = ["GUID" => "{".$ca['uuid']."}", "Remove" => false, "Type" => "Authority", "X509" => $caSanitized];
278
+            $this->loggerInstance->debug(3, $caSanitized."\n");
279 279
         }
280 280
         // if we are doing silverbullet, include the unencrypted(!) P12 as a client certificate
281 281
         if ($this->selectedEap == \core\common\EAP::EAPTYPE_SILVERBULLET) {
282
-            $jsonArray["Certificates"][] = ["GUID" => "[" . $this->clientCert['GUID'] . "]", "PKCS12" => base64_encode($this->clientCert['certdataclear']), "Remove" => false, "Type" => "Client"];
282
+            $jsonArray["Certificates"][] = ["GUID" => "[".$this->clientCert['GUID']."]", "PKCS12" => base64_encode($this->clientCert['certdataclear']), "Remove" => false, "Type" => "Client"];
283 283
         }
284 284
         $eaparray = $this->eapBlock($caRefs);
285 285
         // define Wi-Fi networks
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
 
301 301
         file_put_contents('installer_profile', $finalJson);
302 302
 
303
-        $fileName = $this->installerBasename . '.onc';
303
+        $fileName = $this->installerBasename.'.onc';
304 304
 
305 305
         if (!$this->sign) {
306 306
             rename("installer_profile", $fileName);
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
         // have the notion of signing
312 312
         // but if they ever change their mind, we are prepared
313 313
 
314
-        $outputFromSigning = system($this->sign . " installer_profile '$fileName' > /dev/null");
314
+        $outputFromSigning = system($this->sign." installer_profile '$fileName' > /dev/null");
315 315
         if ($outputFromSigning === FALSE) {
316 316
             $this->loggerInstance->debug(2, "Signing the ONC installer $fileName FAILED!\n");
317 317
         }
Please login to merge, or discard this patch.
devices/xml/XML.inc.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
         if (is_scalar($value)) {
119 119
             $this->value = strval($value);
120 120
         } else {
121
-            throw new Exception("unexpected value type passed" . gettype($value));
121
+            throw new Exception("unexpected value type passed".gettype($value));
122 122
         }
123 123
     }
124 124
 
@@ -434,7 +434,7 @@  discard block
 block discarded – undo
434 434
     $qualClassName = get_class($object);
435 435
     // remove namespace qualifier
436 436
     $pos = strrpos($qualClassName, '\\');
437
-    $className =  substr($qualClassName, $pos + 1);
437
+    $className = substr($qualClassName, $pos + 1);
438 438
     $name = preg_replace("/_/", "-", $className);
439 439
     if ($object->getValue()) {
440 440
         $val = preg_replace('/&/', '&amp;', $object->getValue());
Please login to merge, or discard this patch.
devices/xml/Device_XML.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
         return $helpdesk;
295 295
     }
296 296
 
297
-   private function getCredentialApplicability() {
297
+    private function getCredentialApplicability() {
298 298
         $ssids = $this->attributes['internal:SSID'];
299 299
         $oids = $this->attributes['internal:consortia'];
300 300
         $credentialapplicability = new CredentialApplicability();
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
     }
421 421
     
422 422
     private function getAuthMethod($eap) {
423
- //       $attr = $this->attributes;
423
+    //       $attr = $this->attributes;
424 424
         $authmethod = new AuthenticationMethod();
425 425
         $eapParams = $this->getAuthenticationMethodParams($eap);
426 426
         $eaptype = new Type();
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
  */
32 32
 namespace devices\xml;
33 33
 use Exception;
34
-require_once dirname(__FILE__) . '/XML.inc.php';
34
+require_once dirname(__FILE__).'/XML.inc.php';
35 35
 
36 36
 /**
37 37
  * This class implements full functionality of the generic XML device
@@ -132,11 +132,11 @@  discard block
 block discarded – undo
132 132
         marshalObject($root, $eapIdp);
133 133
         $dom = dom_import_simplexml($root)->ownerDocument;
134 134
         //TODO schema validation makes sense so probably should be used
135
-        if ($dom->schemaValidate(ROOT . '/devices/xml/eap-metadata.xsd') === FALSE) {
135
+        if ($dom->schemaValidate(ROOT.'/devices/xml/eap-metadata.xsd') === FALSE) {
136 136
             throw new Exception("Schema validation failed for eap-metadata");
137 137
         }
138
-        file_put_contents($this->installerBasename . '.eap-config', $dom->saveXML());
139
-        return($this->installerBasename . '.eap-config');
138
+        file_put_contents($this->installerBasename.'.eap-config', $dom->saveXML());
139
+        return($this->installerBasename.'.eap-config');
140 140
     }
141 141
 
142 142
     private $AttributeNames = [
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
             $this->loggerInstance->debug(4, "Missing class definition for $attrName\n");
163 163
             return([]);
164 164
         }
165
-        $className = "\devices\xml\\" . $this->AttributeNames[$attrName];
165
+        $className = "\devices\xml\\".$this->AttributeNames[$attrName];
166 166
         $objs = [];
167 167
         if ($this->langScope === 'global') {
168 168
             foreach ($attributeList['langs'] as $language => $value) {
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
                 $displayname = new DisplayName();
201 201
                 if (isset($profileNameLangs)) {
202 202
                     $langOrC = isset($profileNameLangs[$language]) ? $profileNameLangs[$language] : $profileNameLangs['C'];
203
-                    $value .= ' - ' . $langOrC;
203
+                    $value .= ' - '.$langOrC;
204 204
                 }
205 205
                 $displayname->setValue($value);
206 206
                 $displayname->setAttributes(['lang' => $language]);
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
             $displayname = new DisplayName();
211 211
             $value = $attr['general:instname'][0];
212 212
             if ($attr['internal:profile_count'][0] > 1) {
213
-                $value .= ' - ' . $attr['profile:name'][0];
213
+                $value .= ' - '.$attr['profile:name'][0];
214 214
             }
215 215
             $displayname->setValue($value);
216 216
             $objs[] = $displayname;
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
         $attr = $this->attributes;
228 228
         if (isset($attr['general:logo_file'][0])) {
229 229
             $logoString = base64_encode($attr['general:logo_file'][0]);
230
-            $logoMime = 'image/' . $attr['internal:logo_file'][0]['mime'];
230
+            $logoMime = 'image/'.$attr['internal:logo_file'][0]['mime'];
231 231
             $providerlogo = new ProviderLogo();
232 232
             $providerlogo->setAttributes(['mime' => $logoMime, 'encoding' => 'base64']);
233 233
             $providerlogo->setValue($logoString);
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
 
328 328
         if (isset($inner["METHOD"]) && $inner["METHOD"]) {
329 329
             $innerauthmethod = new InnerAuthenticationMethod();
330
-            $typeOfInner = "\devices\xml\\" . ($inner["EAP"] ? 'EAPMethod' : 'NonEAPAuthMethod');
330
+            $typeOfInner = "\devices\xml\\".($inner["EAP"] ? 'EAPMethod' : 'NonEAPAuthMethod');
331 331
             $eapmethod = new $typeOfInner();
332 332
             $eaptype = new Type();
333 333
             $eaptype->setValue($inner['METHOD']);
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
         return($serversidecredential);
365 365
     }
366 366
     
367
-    private function setClientSideRealm ($clientsidecredential) {
367
+    private function setClientSideRealm($clientsidecredential) {
368 368
         $attr = $this->attributes;
369 369
         $realm = \core\common\Entity::getAttributeValue($attr, 'internal:realm', 0);
370 370
         if ($realm === NULL) {
Please login to merge, or discard this patch.
devices/redirect_dev/Device_RedirectDev.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -22,15 +22,15 @@
 block discarded – undo
22 22
 namespace devices\redirect_dev;
23 23
 
24 24
 class Device_RedirectDev extends \core\DeviceConfig {
25
-   /**
26
-    * Constructs a Device object.
27
-    *
28
-    * @final not to be redefined
29
-    */
25
+    /**
26
+     * Constructs a Device object.
27
+     *
28
+     * @final not to be redefined
29
+     */
30 30
     final public function __construct() {
31 31
         parent::__construct();
32
-      $this->setSupportedEapMethods([\core\common\EAP::EAPTYPE_NONE]);
33
-      $this->loggerInstance->debug(4,"RedirectEx called");
32
+        $this->setSupportedEapMethods([\core\common\EAP::EAPTYPE_NONE]);
33
+        $this->loggerInstance->debug(4,"RedirectEx called");
34 34
     }
35 35
     
36 36
     /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     final public function __construct() {
31 31
         parent::__construct();
32 32
       $this->setSupportedEapMethods([\core\common\EAP::EAPTYPE_NONE]);
33
-      $this->loggerInstance->debug(4,"RedirectEx called");
33
+      $this->loggerInstance->debug(4, "RedirectEx called");
34 34
     }
35 35
     
36 36
     /**
Please login to merge, or discard this patch.
devices/test_module/Device_TestModule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -138,8 +138,8 @@
 block discarded – undo
138 138
      */
139 139
     private function zipInstaller() {
140 140
         // one can always access $this->attributes to check things
141
-        $fileName = $this->installerBasename . '.zip';
142
-        $output = system('zip -q ' . $fileName . ' *');
141
+        $fileName = $this->installerBasename.'.zip';
142
+        $output = system('zip -q '.$fileName.' *');
143 143
         if ($output === FALSE) {
144 144
             $this->loggerInstance->debug(2, "unable to zip the installer\n");
145 145
         }
Please login to merge, or discard this patch.
devices/apple_mobileconfig/MobileconfigSuperclass.php 1 patch
Spacing   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -93,15 +93,15 @@  discard block
 block discarded – undo
93 93
       <key>PayloadDescription</key>
94 94
          <string>$tagline</string>
95 95
       <key>PayloadDisplayName</key>
96
-         <string>" . CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'] . "</string>
96
+         <string>".CONFIG_CONFASSISTANT['CONSORTIUM']['display_name']."</string>
97 97
       <key>PayloadIdentifier</key>
98
-         <string>" . self::$iPhonePayloadPrefix . ".$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile.$this->lang</string>
98
+         <string>" . self::$iPhonePayloadPrefix.".$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile.$this->lang</string>
99 99
       <key>PayloadOrganization</key>
100
-         <string>" . htmlspecialchars(iconv("UTF-8", "UTF-8//IGNORE", $this->attributes['general:instname'][0]), ENT_XML1, 'UTF-8') . ( $this->attributes['internal:profile_count'][0] > 1 ? " (" . htmlspecialchars(iconv("UTF-8", "UTF-8//IGNORE", $this->attributes['profile:name'][0]), ENT_XML1, 'UTF-8') . ")" : "") . "</string>
100
+         <string>".htmlspecialchars(iconv("UTF-8", "UTF-8//IGNORE", $this->attributes['general:instname'][0]), ENT_XML1, 'UTF-8').($this->attributes['internal:profile_count'][0] > 1 ? " (".htmlspecialchars(iconv("UTF-8", "UTF-8//IGNORE", $this->attributes['profile:name'][0]), ENT_XML1, 'UTF-8').")" : "")."</string>
101 101
       <key>PayloadType</key>
102 102
          <string>Configuration</string>
103 103
       <key>PayloadUUID</key>
104
-         <string>" . \core\common\Entity::uuid('', self::$iPhonePayloadPrefix . $this->massagedConsortium . $this->massagedCountry . $this->massagedInst . $this->massagedProfile) . "</string>
104
+         <string>" . \core\common\Entity::uuid('', self::$iPhonePayloadPrefix.$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile)."</string>
105 105
       <key>PayloadVersion</key>
106 106
          <integer>1</integer>";
107 107
         \core\common\Entity::outOfThePotatoes();
@@ -132,15 +132,15 @@  discard block
 block discarded – undo
132 132
     protected function consentBlock() {
133 133
         \core\common\Entity::intoThePotatoes();
134 134
         if (isset($this->attributes['support:info_file'])) {
135
-            return MobileconfigSuperclass::BUFFER_CONSENT_PRE . htmlspecialchars(iconv("UTF-8", "UTF-8//TRANSLIT", $this->attributes['support:info_file'][0]), ENT_XML1, 'UTF-8') . MobileconfigSuperclass::BUFFER_CONSENT_POST;
135
+            return MobileconfigSuperclass::BUFFER_CONSENT_PRE.htmlspecialchars(iconv("UTF-8", "UTF-8//TRANSLIT", $this->attributes['support:info_file'][0]), ENT_XML1, 'UTF-8').MobileconfigSuperclass::BUFFER_CONSENT_POST;
136 136
         }
137 137
         if ($this->attributes['internal:verify_userinput_suffix'][0] != 0) {
138 138
             if (strlen($this->attributes['internal:realm'][0]) > 0) {
139
-                $retval =MobileconfigSuperclass::BUFFER_CONSENT_PRE . sprintf(_("Important Notice: your username must end with @%s!"), $this->attributes['internal:realm'][0]) . MobileconfigSuperclass::BUFFER_CONSENT_POST;
139
+                $retval = MobileconfigSuperclass::BUFFER_CONSENT_PRE.sprintf(_("Important Notice: your username must end with @%s!"), $this->attributes['internal:realm'][0]).MobileconfigSuperclass::BUFFER_CONSENT_POST;
140 140
                 \core\common\Entity::outOfThePotatoes();
141 141
                 return $retval;
142 142
             }
143
-            $retval = MobileconfigSuperclass::BUFFER_CONSENT_PRE . _("Important Notice: your username MUST be in the form of xxx@yyy where the yyy is a common suffix identifying your Identity Provider. Please find out what to use there and enter the username in the correct format.") . MobileconfigSuperclass::BUFFER_CONSENT_POST;
143
+            $retval = MobileconfigSuperclass::BUFFER_CONSENT_PRE._("Important Notice: your username MUST be in the form of xxx@yyy where the yyy is a common suffix identifying your Identity Provider. Please find out what to use there and enter the username in the correct format.").MobileconfigSuperclass::BUFFER_CONSENT_POST;
144 144
             \core\common\Entity::outOfThePotatoes();
145 145
             return $retval;
146 146
         }
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
         // also escape htmlspecialchars
166 166
         // not all names and profiles have a name, so be prepared
167 167
 
168
-        $this->loggerInstance->debug(5, "List of available attributes: " . var_export($this->attributes, TRUE));
168
+        $this->loggerInstance->debug(5, "List of available attributes: ".var_export($this->attributes, TRUE));
169 169
 
170 170
         $this->instName = $this->attributes['general:instname'][0] ?? _("Unnamed Organisation");
171 171
         $this->profileName = $this->attributes['profile:name'][0] ?? _("Unnamed Profile");
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
 
210 210
         textdomain($dom);
211 211
 
212
-        $fileName = $this->installerBasename . '.mobileconfig';
212
+        $fileName = $this->installerBasename.'.mobileconfig';
213 213
 
214 214
         if (!$this->sign) {
215 215
             rename("installer_profile", $fileName);
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
             return $fileName;
218 218
         }
219 219
         // still here? Then we are signing.
220
-        $signing = system($this->sign . " installer_profile '$fileName' > /dev/null");
220
+        $signing = system($this->sign." installer_profile '$fileName' > /dev/null");
221 221
         if ($signing === FALSE) {
222 222
             $this->loggerInstance->debug(2, "Signing the mobileconfig installer $fileName FAILED!\n");
223 223
         }
@@ -235,19 +235,19 @@  discard block
 block discarded – undo
235 235
         \core\common\Entity::intoThePotatoes();
236 236
         $ssidCount = count($this->attributes['internal:SSID']);
237 237
         $certCount = count($this->attributes['internal:CAs'][0]);
238
-        $out = "<p>" . _("For best results, please use the built-in browser (Safari) to open the configuration file.") . "</p>";
238
+        $out = "<p>"._("For best results, please use the built-in browser (Safari) to open the configuration file.")."</p>";
239 239
         $out .= "<p>";
240 240
         $out .= _("The profile will install itself after you click (or tap) the button. You will be asked for confirmation/input at several points:");
241 241
         $out .= "<ul>";
242
-        $out .= "<li>" . _("to install the profile") . "</li>";
243
-        $out .= "<li>" . ngettext("to accept the server certificate authority", "to accept the server certificate authorities", $certCount);
242
+        $out .= "<li>"._("to install the profile")."</li>";
243
+        $out .= "<li>".ngettext("to accept the server certificate authority", "to accept the server certificate authorities", $certCount);
244 244
         if ($certCount > 1) {
245
-            $out .= " " . sprintf(_("(%d times)"), $certCount);
245
+            $out .= " ".sprintf(_("(%d times)"), $certCount);
246 246
         }
247 247
         $out .= "</li>";
248
-        $out .= "<li>" . _("to enter the username and password you have been given by your organisation");
248
+        $out .= "<li>"._("to enter the username and password you have been given by your organisation");
249 249
         if ($ssidCount > 1) {
250
-            $out .= " " . sprintf(_("(%d times each, because %s is installed for %d SSIDs)"), $ssidCount, CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'], $ssidCount);
250
+            $out .= " ".sprintf(_("(%d times each, because %s is installed for %d SSIDs)"), $ssidCount, CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'], $ssidCount);
251 251
         }
252 252
         $out .= "</li>";
253 253
         $out .= "</ul>";
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
                <key>ServiceProviderRoamingEnabled</key>
285 285
                <true/>
286 286
                <key>DisplayedOperatorName</key>
287
-               <string>" . CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'] . " via Passpoint</string>";
287
+               <string>" . CONFIG_CONFASSISTANT['CONSORTIUM']['display_name']." via Passpoint</string>";
288 288
         // if we don't know the realm, omit the entire DomainName key
289 289
         if (isset($this->attributes['internal:realm'])) {
290 290
             $retval .= "<key>DomainName</key>
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
                   <dict>
333 333
                       <key>AcceptEAPTypes</key>
334 334
                          <array>
335
-                            <integer>" . $eapType['OUTER'] . "</integer>
335
+                            <integer>" . $eapType['OUTER']."</integer>
336 336
                          </array>
337 337
                       <key>EAPFASTProvisionPAC</key>
338 338
                             <true />
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
 ";
346 346
         if ($realm !== NULL) {
347 347
             $retval .= "<key>OuterIdentity</key>
348
-                                    <string>" . htmlspecialchars($realm, ENT_XML1, 'UTF-8') . "</string>
348
+                                    <string>" . htmlspecialchars($realm, ENT_XML1, 'UTF-8')."</string>
349 349
 ";
350 350
         }
351 351
         $retval .= "<key>PayloadCertificateAnchorUUID</key>
@@ -369,11 +369,11 @@  discard block
 block discarded – undo
369 369
         $retval .= "
370 370
                          </array>";
371 371
         if ($eapType['INNER'] == \core\common\EAP::NE_SILVERBULLET) {
372
-            $retval .= "<key>UserName</key><string>" . $this->clientCert["certObject"]->username . "</string>";
372
+            $retval .= "<key>UserName</key><string>".$this->clientCert["certObject"]->username."</string>";
373 373
         }
374 374
         $retval .= "
375 375
                       <key>TTLSInnerAuthentication</key>
376
-                         <string>" . ($eapType['INNER'] == \core\common\EAP::NONE ? "PAP" : "MSCHAPv2") . "</string>
376
+                         <string>" . ($eapType['INNER'] == \core\common\EAP::NONE ? "PAP" : "MSCHAPv2")."</string>
377 377
                    </dict>";
378 378
         return $retval;
379 379
     }
@@ -392,9 +392,9 @@  discard block
 block discarded – undo
392 392
             // characters are still reversed, invert on use!
393 393
             $buffer .= "<string>Manual</string>
394 394
                   <key>ProxyServer</key>
395
-                  <string>" . strrev($serverAndPort[1]) . "</string>
395
+                  <string>" . strrev($serverAndPort[1])."</string>
396 396
                   <key>ProxyServerPort</key>
397
-                  <integer>" . strrev($serverAndPort[0]) . "</integer>
397
+                  <integer>" . strrev($serverAndPort[0])."</integer>
398 398
                   <key>ProxyPACFallbackAllowed</key>
399 399
                   <false/>";
400 400
         } else {
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
                     throw new Exception("SSID must be a string!");
423 423
                 }
424 424
                 $escapedSSID = htmlspecialchars($toBeConfigured, ENT_XML1, 'UTF-8');
425
-                $payloadIdentifier = "wifi." . $this->serial;
425
+                $payloadIdentifier = "wifi.".$this->serial;
426 426
                 $payloadShortName = sprintf(_("SSID %s"), $escapedSSID);
427 427
                 $payloadName = sprintf(_("%s configuration for network name %s"), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'], $escapedSSID);
428 428
                 $encryptionTypeString = "WPA";
@@ -470,11 +470,11 @@  discard block
 block discarded – undo
470 470
                <key>PayloadDisplayName</key>
471 471
                   <string>$payloadShortName</string>
472 472
                <key>PayloadIdentifier</key>
473
-                  <string>" . self::$iPhonePayloadPrefix . ".$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile.$this->lang.$payloadIdentifier</string>
473
+                  <string>".self::$iPhonePayloadPrefix.".$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile.$this->lang.$payloadIdentifier</string>
474 474
                <key>PayloadOrganization</key>
475
-                  <string>" . $this->massagedConsortium . ".1x-config.org</string>
475
+                  <string>".$this->massagedConsortium.".1x-config.org</string>
476 476
                <key>PayloadType</key>
477
-                  <string>com.apple." . ($blocktype == MobileconfigSuperclass::NETWORK_BLOCK_TYPE_WIRED ? "firstactiveethernet" : "wifi") . ".managed</string>";
477
+                  <string>com.apple." . ($blocktype == MobileconfigSuperclass::NETWORK_BLOCK_TYPE_WIRED ? "firstactiveethernet" : "wifi").".managed</string>";
478 478
         $retval .= $this->proxySettings();
479 479
         $retval .= $setupModesString;
480 480
         if ($eapType['INNER'] == \core\common\EAP::NE_SILVERBULLET) {
@@ -486,7 +486,7 @@  discard block
 block discarded – undo
486 486
         }
487 487
         $retval .= "
488 488
                <key>PayloadUUID</key>
489
-                  <string>" . \core\common\Entity::uuid() . "</string>
489
+                  <string>" . \core\common\Entity::uuid()."</string>
490 490
                <key>PayloadVersion</key>
491 491
                   <integer>1</integer>
492 492
                   $wifiNetworkIdentification</dict>";
@@ -515,15 +515,15 @@  discard block
 block discarded – undo
515 515
 	<key>IsHotspot</key>
516 516
 	<false/>
517 517
 	<key>PayloadDescription</key>
518
-	<string>" . sprintf(_("This SSID should not be used after bootstrapping %s"), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name']) . "</string>
518
+	<string>" . sprintf(_("This SSID should not be used after bootstrapping %s"), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'])."</string>
519 519
 	<key>PayloadDisplayName</key>
520
-	<string>" . _("Disabled WiFi network") . "</string>
520
+	<string>" . _("Disabled WiFi network")."</string>
521 521
 	<key>PayloadIdentifier</key>
522
-	<string>" . self::$iPhonePayloadPrefix . ".$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile.$this->lang.wifi.disabled.$this->removeSerial</string>
522
+	<string>" . self::$iPhonePayloadPrefix.".$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile.$this->lang.wifi.disabled.$this->removeSerial</string>
523 523
 	<key>PayloadType</key>
524 524
 	<string>com.apple.wifi.managed</string>
525 525
 	<key>PayloadUUID</key>
526
-	<string>" . \core\common\Entity::uuid() . "</string>
526
+	<string>".\core\common\Entity::uuid()."</string>
527 527
 	<key>PayloadVersion</key>
528 528
 	<real>1</real>";
529 529
         $retval .= $this->proxySettings();
@@ -597,7 +597,7 @@  discard block
 block discarded – undo
597 597
         $mimeBlob = base64_encode($binaryBlob);
598 598
         $mimeFormatted = chunk_split($mimeBlob, 52, "\r\n");
599 599
         $payloadUUID = \core\common\Entity::uuid('', $mimeBlob);
600
-        $retArray = ["block" => "<dict>" .
600
+        $retArray = ["block" => "<dict>".
601 601
             // we don't include the import password. It's displayed on screen, and should be input by the user.
602 602
             // <key>Password</key>
603 603
             //   <string>" . $this->clientCert['password'] . "</string>
@@ -610,7 +610,7 @@  discard block
 block discarded – undo
610 610
                   <key>PayloadDescription</key>
611 611
                      <string>MIME Base-64 encoded PKCS#12 Client Certificate</string>
612 612
                   <key>PayloadDisplayName</key>
613
-                     <string>" . _("eduroam user certificate") . "</string>
613
+                     <string>"._("eduroam user certificate")."</string>
614 614
                   <key>PayloadIdentifier</key>
615 615
                      <string>com.apple.security.pkcs12.$payloadUUID</string>
616 616
                   <key>PayloadType</key>
@@ -620,7 +620,7 @@  discard block
 block discarded – undo
620 620
                   <key>PayloadVersion</key>
621 621
                      <integer>1</integer>
622 622
                 </dict>",
623
-            "UUID" => $payloadUUID,];
623
+            "UUID" => $payloadUUID, ];
624 624
         \core\common\Entity::outOfThePotatoes();
625 625
         return $retArray;
626 626
     }
@@ -638,7 +638,7 @@  discard block
 block discarded – undo
638 638
         }
639 639
         $expiryTime = new \DateTime($this->clientCert['certObject']->expiry);
640 640
         return "<key>RemovalDate</key>
641
-        <date>" . $expiryTime->format("Y-m-d") . "T" . $expiryTime->format("H:i:s") . "Z</date>";
641
+        <date>" . $expiryTime->format("Y-m-d")."T".$expiryTime->format("H:i:s")."Z</date>";
642 642
     }
643 643
 
644 644
     private $CAsAccountedFor = [];
@@ -661,21 +661,21 @@  discard block
 block discarded – undo
661 661
             $stream = "
662 662
             <dict>
663 663
                <key>PayloadCertificateFileName</key>
664
-               <string>" . $ca['uuid'] . ".der</string>
664
+               <string>" . $ca['uuid'].".der</string>
665 665
                <key>PayloadContent</key>
666 666
                <data>
667
-" . $trimmedPem . "</data>
667
+" . $trimmedPem."</data>
668 668
                <key>PayloadDescription</key>
669
-               <string>" . sprintf(_("The %s Certification Authority"), \core\common\Entity::$nomenclature_inst) . "</string>
669
+               <string>" . sprintf(_("The %s Certification Authority"), \core\common\Entity::$nomenclature_inst)."</string>
670 670
                <key>PayloadDisplayName</key>
671
-               <string>" . sprintf(_("%s CA"), \core\common\Entity::$nomenclature_inst) . "</string>
671
+               <string>" . sprintf(_("%s CA"), \core\common\Entity::$nomenclature_inst)."</string>
672 672
                <key>PayloadIdentifier</key>
673
-               <string>" . self::$iPhonePayloadPrefix . ".$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile.credential.$this->caSerial</string>
673
+               <string>" . self::$iPhonePayloadPrefix.".$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile.credential.$this->caSerial</string>
674 674
                <key>PayloadOrganization</key>
675
-               <string>" . $this->massagedConsortium . ".1x-config.org</string>
675
+               <string>".$this->massagedConsortium.".1x-config.org</string>
676 676
                <key>PayloadType</key>
677 677
                <string>com.apple.security.root</string>
678
-               <key>PayloadUUID</key><string>" . $ca['uuid'] . "</string>
678
+               <key>PayloadUUID</key><string>" . $ca['uuid']."</string>
679 679
                <key>PayloadVersion</key>
680 680
                <integer>1</integer>
681 681
             </dict>";
Please login to merge, or discard this patch.