@@ -55,9 +55,9 @@ discard block |
||
| 55 | 55 | * |
| 56 | 56 | */ |
| 57 | 57 | public function writeInstaller() { |
| 58 | - $installerPath = $this->installerBasename . ".py"; |
|
| 58 | + $installerPath = $this->installerBasename.".py"; |
|
| 59 | 59 | $this->copyFile("main.py", $installerPath); |
| 60 | - $installer = fopen($installerPath,"a"); |
|
| 60 | + $installer = fopen($installerPath, "a"); |
|
| 61 | 61 | if ($installer === FALSE) { |
| 62 | 62 | throw new Exception("Unable to open installer file for writing!"); |
| 63 | 63 | } |
@@ -84,9 +84,9 @@ discard block |
||
| 84 | 84 | $out .= "<p>"; |
| 85 | 85 | if ($ssidCount > 1) { |
| 86 | 86 | if ($ssidCount > 2) { |
| 87 | - $out .= sprintf(_("In addition to <strong>%s</strong> the installer will also configure access to the following networks:"), implode(', ', \config\ConfAssistant::CONFIG['CONSORTIUM']['ssid'])) . " "; |
|
| 87 | + $out .= sprintf(_("In addition to <strong>%s</strong> the installer will also configure access to the following networks:"), implode(', ', \config\ConfAssistant::CONFIG['CONSORTIUM']['ssid']))." "; |
|
| 88 | 88 | } else { |
| 89 | - $out .= sprintf(_("In addition to <strong>%s</strong> the installer will also configure access to:"), implode(', ', \config\ConfAssistant::CONFIG['CONSORTIUM']['ssid'])) . " "; |
|
| 89 | + $out .= sprintf(_("In addition to <strong>%s</strong> the installer will also configure access to:"), implode(', ', \config\ConfAssistant::CONFIG['CONSORTIUM']['ssid']))." "; |
|
| 90 | 90 | } |
| 91 | 91 | $iterator = 0; |
| 92 | 92 | foreach ($this->attributes['internal:SSID'] as $ssid => $v) { |
@@ -124,8 +124,8 @@ discard block |
||
| 124 | 124 | * @return void |
| 125 | 125 | */ |
| 126 | 126 | private function writeConfigLine($file, $prefix, $name, $text) { |
| 127 | - $out = $prefix . $name . ' = "' . $text; |
|
| 128 | - fwrite($file, wordwrap($out, 70, " \" \\\n \"") . "\n"); |
|
| 127 | + $out = $prefix.$name.' = "'.$text; |
|
| 128 | + fwrite($file, wordwrap($out, 70, " \" \\\n \"")."\n"); |
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | /** |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | 'user_cert_missing' => _("personal certificate file not found"), |
| 165 | 165 | ]; |
| 166 | 166 | foreach ($messages as $name => $value) { |
| 167 | - $this->writeConfigLine($file, 'Messages.', $name, $value . '"'); |
|
| 167 | + $this->writeConfigLine($file, 'Messages.', $name, $value.'"'); |
|
| 168 | 168 | } |
| 169 | 169 | \core\common\Entity::outOfThePotatoes(); |
| 170 | 170 | } |
@@ -208,39 +208,39 @@ discard block |
||
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | if ($outerId !== NULL) { |
| 211 | - $configRaw['anonymous_identity'] = '"' . $outerId . '"'; |
|
| 211 | + $configRaw['anonymous_identity'] = '"'.$outerId.'"'; |
|
| 212 | 212 | } |
| 213 | 213 | |
| 214 | 214 | if (!empty($this->attributes['internal:realm'][0])) { |
| 215 | 215 | $config['user_realm'] = $this->attributes['internal:realm'][0]; |
| 216 | 216 | } |
| 217 | 217 | |
| 218 | - if(!empty($this->attributes['internal:hint_userinput_suffix'][0]) && $this->attributes['internal:hint_userinput_suffix'][0] == 1) { |
|
| 218 | + if (!empty($this->attributes['internal:hint_userinput_suffix'][0]) && $this->attributes['internal:hint_userinput_suffix'][0] == 1) { |
|
| 219 | 219 | $configRaw['hint_user_input'] = "True"; |
| 220 | 220 | } |
| 221 | 221 | |
| 222 | - if(!empty($this->attributes['internal:verify_userinput_suffix'][0]) && $this->attributes['internal:verify_userinput_suffix'][0] == 1) { |
|
| 222 | + if (!empty($this->attributes['internal:verify_userinput_suffix'][0]) && $this->attributes['internal:verify_userinput_suffix'][0] == 1) { |
|
| 223 | 223 | $configRaw['verify_user_realm_input'] = "True"; |
| 224 | 224 | } |
| 225 | 225 | |
| 226 | 226 | foreach ($config as $name => $value) { |
| 227 | - $this->writeConfigLine($file, 'Config.', $name, $value . '"'); |
|
| 227 | + $this->writeConfigLine($file, 'Config.', $name, $value.'"'); |
|
| 228 | 228 | } |
| 229 | 229 | |
| 230 | 230 | foreach ($configRaw as $name => $value) { |
| 231 | - fwrite($file, 'Config.' . $name . ' = ' . $value . "\n"); |
|
| 231 | + fwrite($file, 'Config.'.$name.' = '.$value."\n"); |
|
| 232 | 232 | } |
| 233 | 233 | |
| 234 | 234 | if ($tou === '') { |
| 235 | - fwrite($file, 'Config.tou = ""' . "\n"); |
|
| 235 | + fwrite($file, 'Config.tou = ""'."\n"); |
|
| 236 | 236 | } else { |
| 237 | - fwrite($file, 'Config.tou = """' . $tou . '"""' . "\n"); |
|
| 237 | + fwrite($file, 'Config.tou = """'.$tou.'"""'."\n"); |
|
| 238 | 238 | } |
| 239 | 239 | |
| 240 | - fwrite($file, 'Config.CA = """' . $this->mkCAfile() . '"""' . "\n"); |
|
| 240 | + fwrite($file, 'Config.CA = """'.$this->mkCAfile().'"""'."\n"); |
|
| 241 | 241 | $sbUserFile = $this->mkSbUserFile(); |
| 242 | 242 | if ($sbUserFile !== '') { |
| 243 | - fwrite($file, 'Config.sb_user_file = """' . $sbUserFile . '"""' . "\n"); |
|
| 243 | + fwrite($file, 'Config.sb_user_file = """'.$sbUserFile.'"""'."\n"); |
|
| 244 | 244 | } |
| 245 | 245 | } |
| 246 | 246 | |
@@ -292,7 +292,7 @@ discard block |
||
| 292 | 292 | } |
| 293 | 293 | $out .= "'DNS:$oneServer'"; |
| 294 | 294 | } |
| 295 | - return "[" . $out. "]"; |
|
| 295 | + return "[".$out."]"; |
|
| 296 | 296 | } |
| 297 | 297 | |
| 298 | 298 | /** |
@@ -306,7 +306,7 @@ discard block |
||
| 306 | 306 | foreach ($ssids as $ssid => $cipher) { |
| 307 | 307 | $outArray[] = "'$ssid'"; |
| 308 | 308 | } |
| 309 | - return '[' . implode(', ', $outArray) . ']'; |
|
| 309 | + return '['.implode(', ', $outArray).']'; |
|
| 310 | 310 | } |
| 311 | 311 | |
| 312 | 312 | /** |
@@ -322,7 +322,7 @@ discard block |
||
| 322 | 322 | $outArray[] = "'$ssid'"; |
| 323 | 323 | } |
| 324 | 324 | } |
| 325 | - return '[' . implode(', ', $outArray) . ']'; |
|
| 325 | + return '['.implode(', ', $outArray).']'; |
|
| 326 | 326 | } |
| 327 | 327 | |
| 328 | 328 | /** |
@@ -330,7 +330,7 @@ discard block |
||
| 330 | 330 | * |
| 331 | 331 | * @return string |
| 332 | 332 | */ |
| 333 | - private function mkCAfile(){ |
|
| 333 | + private function mkCAfile() { |
|
| 334 | 334 | $out = ''; |
| 335 | 335 | $cAlist = $this->attributes['internal:CAs'][0]; |
| 336 | 336 | foreach ($cAlist as $oneCa) { |
@@ -346,7 +346,7 @@ discard block |
||
| 346 | 346 | */ |
| 347 | 347 | private function mkIntro() { |
| 348 | 348 | \core\common\Entity::intoThePotatoes(); |
| 349 | - $out = _("This installer has been prepared for {0}") . '\n\n' . _("More information and comments:") . '\n\nEMAIL: {1}\nWWW: {2}\n\n' . |
|
| 349 | + $out = _("This installer has been prepared for {0}").'\n\n'._("More information and comments:").'\n\nEMAIL: {1}\nWWW: {2}\n\n'. |
|
| 350 | 350 | _("Installer created with software from the GEANT project."); |
| 351 | 351 | \core\common\Entity::outOfThePotatoes(); |
| 352 | 352 | return $out; |
@@ -174,15 +174,15 @@ discard block |
||
| 174 | 174 | <key>PayloadDescription</key> |
| 175 | 175 | <string>$tagline</string> |
| 176 | 176 | <key>PayloadDisplayName</key> |
| 177 | - <string>" . \config\ConfAssistant::CONFIG['CONSORTIUM']['display_name'] . "</string> |
|
| 177 | + <string>".\config\ConfAssistant::CONFIG['CONSORTIUM']['display_name']."</string> |
|
| 178 | 178 | <key>PayloadIdentifier</key> |
| 179 | - <string>" . self::IPHONE_PAYLOAD_PREFIX . ".$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile.$this->lang</string> |
|
| 179 | + <string>" . self::IPHONE_PAYLOAD_PREFIX.".$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile.$this->lang</string> |
|
| 180 | 180 | <key>PayloadOrganization</key> |
| 181 | - <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> |
|
| 181 | + <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> |
|
| 182 | 182 | <key>PayloadType</key> |
| 183 | 183 | <string>Configuration</string> |
| 184 | 184 | <key>PayloadUUID</key> |
| 185 | - <string>" . \core\common\Entity::uuid('', self::IPHONE_PAYLOAD_PREFIX . $this->massagedConsortium . $this->massagedCountry . $this->massagedInst . $this->massagedProfile) . "</string> |
|
| 185 | + <string>" . \core\common\Entity::uuid('', self::IPHONE_PAYLOAD_PREFIX.$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile)."</string> |
|
| 186 | 186 | <key>PayloadVersion</key> |
| 187 | 187 | <integer>1</integer>"; |
| 188 | 188 | \core\common\Entity::outOfThePotatoes(); |
@@ -213,15 +213,15 @@ discard block |
||
| 213 | 213 | protected function consentBlock() { |
| 214 | 214 | \core\common\Entity::intoThePotatoes(); |
| 215 | 215 | if (isset($this->attributes['support:info_file'])) { |
| 216 | - 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; |
|
| 216 | + 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; |
|
| 217 | 217 | } |
| 218 | 218 | if ($this->attributes['internal:verify_userinput_suffix'][0] != 0) { |
| 219 | 219 | if (strlen($this->attributes['internal:realm'][0]) > 0) { |
| 220 | - $retval =MobileconfigSuperclass::BUFFER_CONSENT_PRE . sprintf(_("Important Notice: your username must end with @%s!"), $this->attributes['internal:realm'][0]) . MobileconfigSuperclass::BUFFER_CONSENT_POST; |
|
| 220 | + $retval = MobileconfigSuperclass::BUFFER_CONSENT_PRE.sprintf(_("Important Notice: your username must end with @%s!"), $this->attributes['internal:realm'][0]).MobileconfigSuperclass::BUFFER_CONSENT_POST; |
|
| 221 | 221 | \core\common\Entity::outOfThePotatoes(); |
| 222 | 222 | return $retval; |
| 223 | 223 | } |
| 224 | - $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; |
|
| 224 | + $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; |
|
| 225 | 225 | \core\common\Entity::outOfThePotatoes(); |
| 226 | 226 | return $retval; |
| 227 | 227 | } |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | // also escape htmlspecialchars |
| 246 | 246 | // not all names and profiles have a name, so be prepared |
| 247 | 247 | |
| 248 | - $this->loggerInstance->debug(5, "List of available attributes: " . var_export($this->attributes, TRUE)); |
|
| 248 | + $this->loggerInstance->debug(5, "List of available attributes: ".var_export($this->attributes, TRUE)); |
|
| 249 | 249 | |
| 250 | 250 | $this->instName = $this->attributes['general:instname'][0] ?? _("Unnamed Organisation"); |
| 251 | 251 | $this->profileName = $this->attributes['profile:name'][0] ?? _("Unnamed Profile"); |
@@ -289,7 +289,7 @@ discard block |
||
| 289 | 289 | |
| 290 | 290 | textdomain($dom); |
| 291 | 291 | |
| 292 | - $fileName = $this->installerBasename . '.mobileconfig'; |
|
| 292 | + $fileName = $this->installerBasename.'.mobileconfig'; |
|
| 293 | 293 | |
| 294 | 294 | if (!$this->sign) { |
| 295 | 295 | rename("installer_profile", $fileName); |
@@ -297,7 +297,7 @@ discard block |
||
| 297 | 297 | return $fileName; |
| 298 | 298 | } |
| 299 | 299 | // still here? Then we are signing. |
| 300 | - $signing = system($this->sign . " installer_profile '$fileName' > /dev/null"); |
|
| 300 | + $signing = system($this->sign." installer_profile '$fileName' > /dev/null"); |
|
| 301 | 301 | if ($signing === FALSE) { |
| 302 | 302 | $this->loggerInstance->debug(2, "Signing the mobileconfig installer $fileName FAILED!\n"); |
| 303 | 303 | } |
@@ -315,19 +315,19 @@ discard block |
||
| 315 | 315 | \core\common\Entity::intoThePotatoes(); |
| 316 | 316 | $ssidCount = count($this->attributes['internal:SSID']); |
| 317 | 317 | $certCount = count($this->attributes['internal:CAs'][0]); |
| 318 | - $out = "<p>" . _("For best results, please use the built-in browser (Safari) to open the configuration file.") . "</p>"; |
|
| 318 | + $out = "<p>"._("For best results, please use the built-in browser (Safari) to open the configuration file.")."</p>"; |
|
| 319 | 319 | $out .= "<p>"; |
| 320 | 320 | $out .= _("The profile will install itself after you click (or tap) the button. You will be asked for confirmation/input at several points:"); |
| 321 | 321 | $out .= "<ul>"; |
| 322 | - $out .= "<li>" . _("to install the profile") . "</li>"; |
|
| 323 | - $out .= "<li>" . ngettext("to accept the server certificate authority", "to accept the server certificate authorities", $certCount); |
|
| 322 | + $out .= "<li>"._("to install the profile")."</li>"; |
|
| 323 | + $out .= "<li>".ngettext("to accept the server certificate authority", "to accept the server certificate authorities", $certCount); |
|
| 324 | 324 | if ($certCount > 1) { |
| 325 | - $out .= " " . sprintf(_("(%d times)"), $certCount); |
|
| 325 | + $out .= " ".sprintf(_("(%d times)"), $certCount); |
|
| 326 | 326 | } |
| 327 | 327 | $out .= "</li>"; |
| 328 | - $out .= "<li>" . _("to enter the username and password you have been given by your organisation"); |
|
| 328 | + $out .= "<li>"._("to enter the username and password you have been given by your organisation"); |
|
| 329 | 329 | if ($ssidCount > 1) { |
| 330 | - $out .= " " . sprintf(_("(%d times each, because %s is installed for %d SSIDs)"), $ssidCount, \config\ConfAssistant::CONFIG['CONSORTIUM']['display_name'], $ssidCount); |
|
| 330 | + $out .= " ".sprintf(_("(%d times each, because %s is installed for %d SSIDs)"), $ssidCount, \config\ConfAssistant::CONFIG['CONSORTIUM']['display_name'], $ssidCount); |
|
| 331 | 331 | } |
| 332 | 332 | $out .= "</li>"; |
| 333 | 333 | $out .= "</ul>"; |
@@ -364,7 +364,7 @@ discard block |
||
| 364 | 364 | <key>ServiceProviderRoamingEnabled</key> |
| 365 | 365 | <true/> |
| 366 | 366 | <key>DisplayedOperatorName</key> |
| 367 | - <string>" . \config\ConfAssistant::CONFIG['CONSORTIUM']['display_name'] . " via Passpoint</string>"; |
|
| 367 | + <string>" . \config\ConfAssistant::CONFIG['CONSORTIUM']['display_name']." via Passpoint</string>"; |
|
| 368 | 368 | // if we don't know the realm, omit the entire DomainName key |
| 369 | 369 | if (isset($this->attributes['internal:realm'])) { |
| 370 | 370 | $retval .= "<key>DomainName</key> |
@@ -412,7 +412,7 @@ discard block |
||
| 412 | 412 | <dict> |
| 413 | 413 | <key>AcceptEAPTypes</key> |
| 414 | 414 | <array> |
| 415 | - <integer>" . $eapType['OUTER'] . "</integer> |
|
| 415 | + <integer>" . $eapType['OUTER']."</integer> |
|
| 416 | 416 | </array> |
| 417 | 417 | <key>EAPFASTProvisionPAC</key> |
| 418 | 418 | <true /> |
@@ -425,7 +425,7 @@ discard block |
||
| 425 | 425 | "; |
| 426 | 426 | if ($realm !== NULL) { |
| 427 | 427 | $retval .= "<key>OuterIdentity</key> |
| 428 | - <string>" . htmlspecialchars($realm, ENT_XML1, 'UTF-8') . "</string> |
|
| 428 | + <string>" . htmlspecialchars($realm, ENT_XML1, 'UTF-8')."</string> |
|
| 429 | 429 | "; |
| 430 | 430 | } |
| 431 | 431 | $retval .= "<key>PayloadCertificateAnchorUUID</key> |
@@ -449,11 +449,11 @@ discard block |
||
| 449 | 449 | $retval .= " |
| 450 | 450 | </array>"; |
| 451 | 451 | if ($eapType['INNER'] == \core\common\EAP::NE_SILVERBULLET) { |
| 452 | - $retval .= "<key>UserName</key><string>" . $this->clientCert["certObject"]->username . "</string>"; |
|
| 452 | + $retval .= "<key>UserName</key><string>".$this->clientCert["certObject"]->username."</string>"; |
|
| 453 | 453 | } |
| 454 | 454 | $retval .= " |
| 455 | 455 | <key>TTLSInnerAuthentication</key> |
| 456 | - <string>" . ($eapType['INNER'] == \core\common\EAP::NONE ? "PAP" : "MSCHAPv2") . "</string> |
|
| 456 | + <string>" . ($eapType['INNER'] == \core\common\EAP::NONE ? "PAP" : "MSCHAPv2")."</string> |
|
| 457 | 457 | </dict>"; |
| 458 | 458 | return $retval; |
| 459 | 459 | } |
@@ -472,9 +472,9 @@ discard block |
||
| 472 | 472 | // characters are still reversed, invert on use! |
| 473 | 473 | $buffer .= "<string>Manual</string> |
| 474 | 474 | <key>ProxyServer</key> |
| 475 | - <string>" . strrev($serverAndPort[1]) . "</string> |
|
| 475 | + <string>" . strrev($serverAndPort[1])."</string> |
|
| 476 | 476 | <key>ProxyServerPort</key> |
| 477 | - <integer>" . strrev($serverAndPort[0]) . "</integer> |
|
| 477 | + <integer>" . strrev($serverAndPort[0])."</integer> |
|
| 478 | 478 | <key>ProxyPACFallbackAllowed</key> |
| 479 | 479 | <false/>"; |
| 480 | 480 | } else { |
@@ -502,7 +502,7 @@ discard block |
||
| 502 | 502 | throw new Exception("SSID must be a string!"); |
| 503 | 503 | } |
| 504 | 504 | $escapedSSID = htmlspecialchars($toBeConfigured, ENT_XML1, 'UTF-8'); |
| 505 | - $payloadIdentifier = "wifi." . $this->serial; |
|
| 505 | + $payloadIdentifier = "wifi.".$this->serial; |
|
| 506 | 506 | $payloadShortName = sprintf(_("SSID %s"), $escapedSSID); |
| 507 | 507 | $payloadName = sprintf(_("%s configuration for network name %s"), \config\ConfAssistant::CONFIG['CONSORTIUM']['display_name'], $escapedSSID); |
| 508 | 508 | $encryptionTypeString = "WPA"; |
@@ -550,11 +550,11 @@ discard block |
||
| 550 | 550 | <key>PayloadDisplayName</key> |
| 551 | 551 | <string>$payloadShortName</string> |
| 552 | 552 | <key>PayloadIdentifier</key> |
| 553 | - <string>" . self::IPHONE_PAYLOAD_PREFIX . ".$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile.$this->lang.$payloadIdentifier</string> |
|
| 553 | + <string>".self::IPHONE_PAYLOAD_PREFIX.".$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile.$this->lang.$payloadIdentifier</string> |
|
| 554 | 554 | <key>PayloadOrganization</key> |
| 555 | - <string>" . $this->massagedConsortium . ".1x-config.org</string> |
|
| 555 | + <string>".$this->massagedConsortium.".1x-config.org</string> |
|
| 556 | 556 | <key>PayloadType</key> |
| 557 | - <string>com.apple." . ($blocktype == MobileconfigSuperclass::NETWORK_BLOCK_TYPE_WIRED ? "firstactiveethernet" : "wifi") . ".managed</string>"; |
|
| 557 | + <string>com.apple." . ($blocktype == MobileconfigSuperclass::NETWORK_BLOCK_TYPE_WIRED ? "firstactiveethernet" : "wifi").".managed</string>"; |
|
| 558 | 558 | $retval .= $this->proxySettings(); |
| 559 | 559 | $retval .= $setupModesString; |
| 560 | 560 | if ($eapType['INNER'] == \core\common\EAP::NE_SILVERBULLET) { |
@@ -566,7 +566,7 @@ discard block |
||
| 566 | 566 | } |
| 567 | 567 | $retval .= " |
| 568 | 568 | <key>PayloadUUID</key> |
| 569 | - <string>" . \core\common\Entity::uuid() . "</string> |
|
| 569 | + <string>" . \core\common\Entity::uuid()."</string> |
|
| 570 | 570 | <key>PayloadVersion</key> |
| 571 | 571 | <integer>1</integer> |
| 572 | 572 | $wifiNetworkIdentification</dict>"; |
@@ -595,15 +595,15 @@ discard block |
||
| 595 | 595 | <key>IsHotspot</key> |
| 596 | 596 | <false/> |
| 597 | 597 | <key>PayloadDescription</key> |
| 598 | - <string>" . sprintf(_("This SSID should not be used after bootstrapping %s"), \config\ConfAssistant::CONFIG['CONSORTIUM']['display_name']) . "</string> |
|
| 598 | + <string>" . sprintf(_("This SSID should not be used after bootstrapping %s"), \config\ConfAssistant::CONFIG['CONSORTIUM']['display_name'])."</string> |
|
| 599 | 599 | <key>PayloadDisplayName</key> |
| 600 | - <string>" . _("Disabled WiFi network") . "</string> |
|
| 600 | + <string>" . _("Disabled WiFi network")."</string> |
|
| 601 | 601 | <key>PayloadIdentifier</key> |
| 602 | - <string>" . self::IPHONE_PAYLOAD_PREFIX . ".$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile.$this->lang.wifi.disabled.$this->removeSerial</string> |
|
| 602 | + <string>" . self::IPHONE_PAYLOAD_PREFIX.".$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile.$this->lang.wifi.disabled.$this->removeSerial</string> |
|
| 603 | 603 | <key>PayloadType</key> |
| 604 | 604 | <string>com.apple.wifi.managed</string> |
| 605 | 605 | <key>PayloadUUID</key> |
| 606 | - <string>" . \core\common\Entity::uuid() . "</string> |
|
| 606 | + <string>".\core\common\Entity::uuid()."</string> |
|
| 607 | 607 | <key>PayloadVersion</key> |
| 608 | 608 | <real>1</real>"; |
| 609 | 609 | $retval .= $this->proxySettings(); |
@@ -677,7 +677,7 @@ discard block |
||
| 677 | 677 | $mimeBlob = base64_encode($binaryBlob); |
| 678 | 678 | $mimeFormatted = chunk_split($mimeBlob, 52, "\r\n"); |
| 679 | 679 | $payloadUUID = \core\common\Entity::uuid('', $mimeBlob); |
| 680 | - $retArray = ["block" => "<dict>" . |
|
| 680 | + $retArray = ["block" => "<dict>". |
|
| 681 | 681 | // we don't include the import password. It's displayed on screen, and should be input by the user. |
| 682 | 682 | // <key>Password</key> |
| 683 | 683 | // <string>" . $this->clientCert['password'] . "</string> |
@@ -690,7 +690,7 @@ discard block |
||
| 690 | 690 | <key>PayloadDescription</key> |
| 691 | 691 | <string>MIME Base-64 encoded PKCS#12 Client Certificate</string> |
| 692 | 692 | <key>PayloadDisplayName</key> |
| 693 | - <string>" . _("eduroam user certificate") . "</string> |
|
| 693 | + <string>"._("eduroam user certificate")."</string> |
|
| 694 | 694 | <key>PayloadIdentifier</key> |
| 695 | 695 | <string>com.apple.security.pkcs12.$payloadUUID</string> |
| 696 | 696 | <key>PayloadType</key> |
@@ -700,7 +700,7 @@ discard block |
||
| 700 | 700 | <key>PayloadVersion</key> |
| 701 | 701 | <integer>1</integer> |
| 702 | 702 | </dict>", |
| 703 | - "UUID" => $payloadUUID,]; |
|
| 703 | + "UUID" => $payloadUUID, ]; |
|
| 704 | 704 | \core\common\Entity::outOfThePotatoes(); |
| 705 | 705 | return $retArray; |
| 706 | 706 | } |
@@ -718,7 +718,7 @@ discard block |
||
| 718 | 718 | } |
| 719 | 719 | $expiryTime = new \DateTime($this->clientCert['certObject']->expiry); |
| 720 | 720 | return "<key>RemovalDate</key> |
| 721 | - <date>" . $expiryTime->format("Y-m-d") . "T" . $expiryTime->format("H:i:s") . "Z</date>"; |
|
| 721 | + <date>" . $expiryTime->format("Y-m-d")."T".$expiryTime->format("H:i:s")."Z</date>"; |
|
| 722 | 722 | } |
| 723 | 723 | |
| 724 | 724 | /** |
@@ -739,21 +739,21 @@ discard block |
||
| 739 | 739 | $stream = " |
| 740 | 740 | <dict> |
| 741 | 741 | <key>PayloadCertificateFileName</key> |
| 742 | - <string>" . $ca['uuid'] . ".der</string> |
|
| 742 | + <string>" . $ca['uuid'].".der</string> |
|
| 743 | 743 | <key>PayloadContent</key> |
| 744 | 744 | <data> |
| 745 | -" . $trimmedPem . "</data> |
|
| 745 | +" . $trimmedPem."</data> |
|
| 746 | 746 | <key>PayloadDescription</key> |
| 747 | - <string>" . sprintf(_("The %s Certification Authority"), \core\common\Entity::$nomenclature_inst) . "</string> |
|
| 747 | + <string>" . sprintf(_("The %s Certification Authority"), \core\common\Entity::$nomenclature_inst)."</string> |
|
| 748 | 748 | <key>PayloadDisplayName</key> |
| 749 | - <string>" . sprintf(_("%s CA"), \core\common\Entity::$nomenclature_inst) . "</string> |
|
| 749 | + <string>" . sprintf(_("%s CA"), \core\common\Entity::$nomenclature_inst)."</string> |
|
| 750 | 750 | <key>PayloadIdentifier</key> |
| 751 | - <string>" . self::IPHONE_PAYLOAD_PREFIX . ".$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile.credential.$this->caSerial</string> |
|
| 751 | + <string>" . self::IPHONE_PAYLOAD_PREFIX.".$this->massagedConsortium.$this->massagedCountry.$this->massagedInst.$this->massagedProfile.credential.$this->caSerial</string> |
|
| 752 | 752 | <key>PayloadOrganization</key> |
| 753 | - <string>" . $this->massagedConsortium . ".1x-config.org</string> |
|
| 753 | + <string>".$this->massagedConsortium.".1x-config.org</string> |
|
| 754 | 754 | <key>PayloadType</key> |
| 755 | 755 | <string>com.apple.security.root</string> |
| 756 | - <key>PayloadUUID</key><string>" . $ca['uuid'] . "</string> |
|
| 756 | + <key>PayloadUUID</key><string>" . $ca['uuid']."</string> |
|
| 757 | 757 | <key>PayloadVersion</key> |
| 758 | 758 | <integer>1</integer> |
| 759 | 759 | </dict>"; |
@@ -135,10 +135,10 @@ discard block |
||
| 135 | 135 | !define MUI_HEADERIMAGE_BITMAP "cat_150.bmp" |
| 136 | 136 | !define MUI_COMPONENTSPAGE_SMALLDESC |
| 137 | 137 | |
| 138 | -!define WELCOME_HEADER "<?php printf(WindowsCommon::sprintNsis(_("Welcome to the %s installer")),\config\ConfAssistant::CONFIG['CONSORTIUM']['display_name'])?>" |
|
| 139 | -!define FAREWELL_HEADER "<?php WindowsCommon::echoNsis( _("Installation complete"))?>" |
|
| 140 | -!define FAREWELL_TEXT "<?php WindowsCommon::echoNsis( _("Network profiles have been installed."))?>$\r$\n$\n <?php WindowsCommon::echoNsis( _("Your system is ready."))?>" |
|
| 141 | -!define FAREWELL_FAIL "<?php WindowsCommon::echoNsis( _("Network installation had errors."))?>$\r$\n$\n <?php WindowsCommon::echoNsis( _("Please contact \${SUPPORT}."))?>" |
|
| 138 | +!define WELCOME_HEADER "<?php printf(WindowsCommon::sprintNsis(_("Welcome to the %s installer")), \config\ConfAssistant::CONFIG['CONSORTIUM']['display_name'])?>" |
|
| 139 | +!define FAREWELL_HEADER "<?php WindowsCommon::echoNsis(_("Installation complete"))?>" |
|
| 140 | +!define FAREWELL_TEXT "<?php WindowsCommon::echoNsis(_("Network profiles have been installed."))?>$\r$\n$\n <?php WindowsCommon::echoNsis(_("Your system is ready."))?>" |
|
| 141 | +!define FAREWELL_FAIL "<?php WindowsCommon::echoNsis(_("Network installation had errors."))?>$\r$\n$\n <?php WindowsCommon::echoNsis(_("Please contact \${SUPPORT}."))?>" |
|
| 142 | 142 | ;-------------------------------- |
| 143 | 143 | ;Languages |
| 144 | 144 | !insertmacro MUI_LANGUAGE "${LANG}" |
@@ -146,14 +146,14 @@ discard block |
||
| 146 | 146 | ;-------------------------------- |
| 147 | 147 | ; License file |
| 148 | 148 | !ifdef LICENSE_FILE |
| 149 | -LicenseForceSelection checkbox "<?php WindowsCommon::echoNsis( _("Accept"))?>" |
|
| 149 | +LicenseForceSelection checkbox "<?php WindowsCommon::echoNsis(_("Accept"))?>" |
|
| 150 | 150 | LicenseText "<?php WindowsCommon::echoNsis(_("If you accept the conditions then select Accept and then click Install to continue."))?>" |
| 151 | 151 | LicenseData ${LICENSE_FILE} |
| 152 | 152 | !endif |
| 153 | 153 | |
| 154 | 154 | ;----------------------------------- |
| 155 | 155 | |
| 156 | -MiscButtonText "" "" "" "<?php WindowsCommon::echoNsis( _("Finish"))?>" |
|
| 156 | +MiscButtonText "" "" "" "<?php WindowsCommon::echoNsis(_("Finish"))?>" |
|
| 157 | 157 | ;---------------------------------- |
| 158 | 158 | ; FUNCTIONS |
| 159 | 159 | |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | |
| 187 | 187 | !macro install_ca_cert ca_file ca_fingerprint level |
| 188 | 188 | !insertmacro debug_cat 2 "locating certificate SHA=${ca_fingerprint} Level=${level}" |
| 189 | - DetailPrint "<?php WindowsCommon::echoNsis( _("searching for certificate"))?> ${ca_file}" |
|
| 189 | + DetailPrint "<?php WindowsCommon::echoNsis(_("searching for certificate"))?> ${ca_file}" |
|
| 190 | 190 | File "${ca_file}" |
| 191 | 191 | nsArray::Set Delete_files "${ca_file}" |
| 192 | 192 | !insertmacro debug_cat 2 "Testing machine store root" |
@@ -248,13 +248,13 @@ discard block |
||
| 248 | 248 | ${EndIf} |
| 249 | 249 | !insertmacro debug_cat 2 "installing certificate $TEMP\${ca_file}" |
| 250 | 250 | !insertmacro debug_cat 3 "Execute: certutil -addstore -user ${level} $TEMP\${ca_file}" |
| 251 | - DetailPrint "<?php WindowsCommon::echoNsis( _("installing certificate"))?> ${ca_file}" |
|
| 251 | + DetailPrint "<?php WindowsCommon::echoNsis(_("installing certificate"))?> ${ca_file}" |
|
| 252 | 252 | nsExec::Exec '"certutil" -addstore -user ${level} "$TEMP"\${ca_file}' |
| 253 | 253 | Pop $0 |
| 254 | 254 | !insertmacro debug_cat 3 "certutil returned $0" |
| 255 | 255 | ${If} $0 != 0 |
| 256 | 256 | IfSilent +2 |
| 257 | - MessageBox MB_OK|MB_ICONEXCLAMATION "<?php WindowsCommon::echoNsis( _("could not install certificate"))?> ${ca_file}" |
|
| 257 | + MessageBox MB_OK|MB_ICONEXCLAMATION "<?php WindowsCommon::echoNsis(_("could not install certificate"))?> ${ca_file}" |
|
| 258 | 258 | !insertmacro debug_cat 1 "could not install certificate ${ca_file}" |
| 259 | 259 | ${EndIf} |
| 260 | 260 | no_install_${ca_file}: |
@@ -461,26 +461,26 @@ discard block |
||
| 461 | 461 | pop $R0 |
| 462 | 462 | ${If} $tkip_count > 0 |
| 463 | 463 | ${If} $aes_count > 1 |
| 464 | - StrCpy $R1 "$\r$\n$\n<?php WindowsCommon::echoNsis( _("The non TKIP profiles are preferred. Always use them if you have a choice."))?>" |
|
| 464 | + StrCpy $R1 "$\r$\n$\n<?php WindowsCommon::echoNsis(_("The non TKIP profiles are preferred. Always use them if you have a choice."))?>" |
|
| 465 | 465 | ${Else} |
| 466 | - StrCpy $R1 "$\r$\n$\n<?php WindowsCommon::echoNsis( _("The non TKIP profile is preferred. Always use it if you have a choice."))?>" |
|
| 466 | + StrCpy $R1 "$\r$\n$\n<?php WindowsCommon::echoNsis(_("The non TKIP profile is preferred. Always use it if you have a choice."))?>" |
|
| 467 | 467 | ${EndIf} |
| 468 | 468 | ${Else} |
| 469 | 469 | StrCpy $R1 "" |
| 470 | 470 | ${EndIf} |
| 471 | 471 | ${If} $profile_count > 0 |
| 472 | - StrCpy $welcome_message "<?php WindowsCommon::echoNsis( _("This installer has been prepared for \${ORGANISATION}"))?>.$\r$\n\ |
|
| 473 | -<?php WindowsCommon::echoNsis( _("The installer will create the following wireless profiles:"))?>$\r$\n\ |
|
| 472 | + StrCpy $welcome_message "<?php WindowsCommon::echoNsis(_("This installer has been prepared for \${ORGANISATION}"))?>.$\r$\n\ |
|
| 473 | +<?php WindowsCommon::echoNsis(_("The installer will create the following wireless profiles:"))?>$\r$\n\ |
|
| 474 | 474 | $R0.\ |
| 475 | 475 | $R1$\r$\n$\n\ |
| 476 | -<?php WindowsCommon::echoNsis( _("More information and comments:"))?>$\r$\n\ |
|
| 476 | +<?php WindowsCommon::echoNsis(_("More information and comments:"))?>$\r$\n\ |
|
| 477 | 477 | EMAIL: ${SUPPORT}$\r$\n\ |
| 478 | 478 | WWW: ${URL}" |
| 479 | 479 | ${Else} |
| 480 | -StrCpy $welcome_message "<?php WindowsCommon::echoNsis( _("This installer has been prepared for \${ORGANISATION}"))?>.$\r$\n\ |
|
| 481 | -<?php WindowsCommon::echoNsis( _("The installer will create the wireless profile:"))?> $R0.\ |
|
| 480 | +StrCpy $welcome_message "<?php WindowsCommon::echoNsis(_("This installer has been prepared for \${ORGANISATION}"))?>.$\r$\n\ |
|
| 481 | +<?php WindowsCommon::echoNsis(_("The installer will create the wireless profile:"))?> $R0.\ |
|
| 482 | 482 | $R1$\r$\n$\n\ |
| 483 | -<?php WindowsCommon::echoNsis( _("More information and comments:"))?>$\r$\n\ |
|
| 483 | +<?php WindowsCommon::echoNsis(_("More information and comments:"))?>$\r$\n\ |
|
| 484 | 484 | EMAIL: ${SUPPORT}$\r$\n\ |
| 485 | 485 | WWW: ${URL}" |
| 486 | 486 | ${EndIf} |
@@ -506,7 +506,7 @@ discard block |
||
| 506 | 506 | SendMessage $HEADLINE ${WM_SETFONT} $HEADLINE_FONT 0 |
| 507 | 507 | ;TRANSLATION |
| 508 | 508 | nsDialogs::CreateControl STATIC ${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 120u 46u -130u -32u "$welcome_message\ |
| 509 | -$\r$\n$\r$\n<?php WindowsCommon::echoNsis( _("Installer created with software from the GEANT project."))?>" |
|
| 509 | +$\r$\n$\r$\n<?php WindowsCommon::echoNsis(_("Installer created with software from the GEANT project."))?>" |
|
| 510 | 510 | Pop $TEXT |
| 511 | 511 | |
| 512 | 512 | SetCtlColors $DIALOG "" 0xffffff |
@@ -619,18 +619,18 @@ discard block |
||
| 619 | 619 | ${If} $wireless_result == 1 |
| 620 | 620 | !insertmacro debug_cat 1 "wlan_test.exe did not find wireless configuration service" |
| 621 | 621 | IfSilent +2 |
| 622 | - MessageBox MB_OK|MB_ICONEXCLAMATION "<?php WindowsCommon::echoNsis( _("Windows wireless configuration service is not enabled. The installer cannot continue."))?>" |
|
| 622 | + MessageBox MB_OK|MB_ICONEXCLAMATION "<?php WindowsCommon::echoNsis(_("Windows wireless configuration service is not enabled. The installer cannot continue."))?>" |
|
| 623 | 623 | Call Cleanup |
| 624 | 624 | ${EndIf} |
| 625 | 625 | ${If} $wireless_result == 2 |
| 626 | 626 | IfSilent +2 |
| 627 | - MessageBox MB_OK|MB_ICONEXCLAMATION "<?php WindowsCommon::echoNsis( _("No wireless interfaces found. The installer cannot continue."))?>" |
|
| 627 | + MessageBox MB_OK|MB_ICONEXCLAMATION "<?php WindowsCommon::echoNsis(_("No wireless interfaces found. The installer cannot continue."))?>" |
|
| 628 | 628 | Call Cleanup |
| 629 | 629 | ${EndIf} |
| 630 | 630 | ${Else} |
| 631 | 631 | ${If} $wireless_result > 0 |
| 632 | 632 | IfSilent +3 |
| 633 | - MessageBox MB_YESNO "<?php WindowsCommon::echoNsis( _("No wireless interfaces found. Wireless access will not be configured. Would you like to continue and configure access on the wired interface?"))?>" IDYES wired_yes |
|
| 633 | + MessageBox MB_YESNO "<?php WindowsCommon::echoNsis(_("No wireless interfaces found. Wireless access will not be configured. Would you like to continue and configure access on the wired interface?"))?>" IDYES wired_yes |
|
| 634 | 634 | Call Cleanup |
| 635 | 635 | wired_yes: |
| 636 | 636 | Push 1 |
@@ -646,7 +646,7 @@ discard block |
||
| 646 | 646 | ${If} $wired == 1 |
| 647 | 647 | ${If} $force_wired == 0 |
| 648 | 648 | IfSilent wired |
| 649 | - MessageBox MB_YESNO "<?php WindowsCommon::echoNsis( _("Do you want to enable access on wired interfaces?"))?>" IDYES wired |
|
| 649 | + MessageBox MB_YESNO "<?php WindowsCommon::echoNsis(_("Do you want to enable access on wired interfaces?"))?>" IDYES wired |
|
| 650 | 650 | Push 0 |
| 651 | 651 | Pop $wired |
| 652 | 652 | ${EndIf} |
@@ -687,7 +687,7 @@ discard block |
||
| 687 | 687 | ;================================ |
| 688 | 688 | |
| 689 | 689 | Function ShowInstfiles |
| 690 | - !insertmacro MUI_HEADER_TEXT "<?php WindowsCommon::echoNsis( _("Profiles installation"))?>" " " |
|
| 690 | + !insertmacro MUI_HEADER_TEXT "<?php WindowsCommon::echoNsis(_("Profiles installation"))?>" " " |
|
| 691 | 691 | FunctionEnd |
| 692 | 692 | ;================================ |
| 693 | 693 | ; Check if a wireless profile exist and put it on delete list |
@@ -706,7 +706,7 @@ discard block |
||
| 706 | 706 | |
| 707 | 707 | Function FindProfile |
| 708 | 708 | Pop $R8 |
| 709 | - DetailPrint "<?php WindowsCommon::echoNsis( _("Checking for profile \$R8"))?>" |
|
| 709 | + DetailPrint "<?php WindowsCommon::echoNsis(_("Checking for profile \$R8"))?>" |
|
| 710 | 710 | !insertmacro debug_cat 2 "Checking for profile $R8" |
| 711 | 711 | !insertmacro debug_cat 3 "Exec: $Netsh wlan show profiles $R8" |
| 712 | 712 | nsExec::Exec '"$Netsh" wlan show profiles "$R8"' |
@@ -714,7 +714,7 @@ discard block |
||
| 714 | 714 | !insertmacro debug_cat 4 "netsh returned $0" |
| 715 | 715 | ${If} $0 == 0 |
| 716 | 716 | !insertmacro debug_cat 1 "found profile $R8" |
| 717 | - DetailPrint "<?php WindowsCommon::echoNsis( _("found profile \$R8"))?>" |
|
| 717 | + DetailPrint "<?php WindowsCommon::echoNsis(_("found profile \$R8"))?>" |
|
| 718 | 718 | Push 0 |
| 719 | 719 | ${Else} |
| 720 | 720 | !insertmacro debug_cat 1 "profile $R8 not found" |
@@ -809,7 +809,7 @@ discard block |
||
| 809 | 809 | ${If} $Symantec_installed != 0 |
| 810 | 810 | !insertmacro debug_cat 3 "Symantec problem" |
| 811 | 811 | IfSilent +2 |
| 812 | - MessageBox MB_OK|MB_ICONEXCLAMATION "<?php printf(WindowsCommon::sprintNsis(_("Please READ this message it is IMPORTANT.$\\r$\\nInstallation problems may be due to the fact that Symantec Endpoint Protection is installed on your machine.$\\r$\\nWhile this is a well-known bug of the Symantec product, about which the installer can not do anything, there is a workaround.$\\r$\\nWhen you close this window the installer will exit and an explorer window will be started (it could appear underneath already opened windows). In this window you should see a script named inst_cat. Start it by double-clicking, It will install the profiles. You will need to login to %s with your username and password.")),\config\ConfAssistant::CONFIG['CONSORTIUM']['display_name']) ?>" |
|
| 812 | + MessageBox MB_OK|MB_ICONEXCLAMATION "<?php printf(WindowsCommon::sprintNsis(_("Please READ this message it is IMPORTANT.$\\r$\\nInstallation problems may be due to the fact that Symantec Endpoint Protection is installed on your machine.$\\r$\\nWhile this is a well-known bug of the Symantec product, about which the installer can not do anything, there is a workaround.$\\r$\\nWhen you close this window the installer will exit and an explorer window will be started (it could appear underneath already opened windows). In this window you should see a script named inst_cat. Start it by double-clicking, It will install the profiles. You will need to login to %s with your username and password.")), \config\ConfAssistant::CONFIG['CONSORTIUM']['display_name']) ?>" |
|
| 813 | 813 | Exec '"explorer" /select,"$EXEDIR\inst_cat.cmd"' |
| 814 | 814 | Quit |
| 815 | 815 | |
@@ -1098,7 +1098,7 @@ discard block |
||
| 1098 | 1098 | Function PFXCertificateSelect |
| 1099 | 1099 | !ifndef SILVERBULLET |
| 1100 | 1100 | ;TRANSLATION |
| 1101 | -!insertmacro MUI_HEADER_TEXT "<?php printf(WindowsCommon::sprintNsis(_("%s installer for")),\config\ConfAssistant::CONFIG['CONSORTIUM']['display_name'])?> " "<?php WindowsCommon::echoNsis(_("Install personal certificate"))?>" |
|
| 1101 | +!insertmacro MUI_HEADER_TEXT "<?php printf(WindowsCommon::sprintNsis(_("%s installer for")), \config\ConfAssistant::CONFIG['CONSORTIUM']['display_name'])?> " "<?php WindowsCommon::echoNsis(_("Install personal certificate"))?>" |
|
| 1102 | 1102 | ;TRANSLATION |
| 1103 | 1103 | IfSilent +2 |
| 1104 | 1104 | MessageBox MB_OK "<?php WindowsCommon::echoNsis(_("Preparing to install personal certificate."))?>$\r$\n<?php WindowsCommon::echoNsis(_("Click OK to continue"))?> " |
@@ -1114,7 +1114,7 @@ discard block |
||
| 1114 | 1114 | $certPasswordLength = strlen($certPasswordLabel); |
| 1115 | 1115 | $certUsernameLabel = WindowsCommon::sprintNsis(_("Username:")); |
| 1116 | 1116 | $certUsernameLength = strlen($certUsernameLabel); |
| 1117 | - $labelLength = max($certPasswordLength,$certUsernameLength); |
|
| 1117 | + $labelLength = max($certPasswordLength, $certUsernameLength); |
|
| 1118 | 1118 | ?> |
| 1119 | 1119 | ${NSD_CreateLabel} 0 0 100% 32u "<?php WindowsCommon::echoNsis(_("Selected file: \$Cert_file"))?>" |
| 1120 | 1120 | !else |
@@ -1131,11 +1131,11 @@ discard block |
||
| 1131 | 1131 | !insertmacro debug_cat 3 "Vista level (Vista without Service pack): $VistaNoSP"; |
| 1132 | 1132 | ${If} $VistaNoSP == 0 |
| 1133 | 1133 | !ifdef PFX_USERNAME |
| 1134 | - !define LABEL_LENGTH "<?php echo($labelLength*3.5)?>u" |
|
| 1135 | - !define TEXT_START "<?php echo($labelLength*3.5 +5)?>u" |
|
| 1134 | + !define LABEL_LENGTH "<?php echo($labelLength * 3.5)?>u" |
|
| 1135 | + !define TEXT_START "<?php echo($labelLength * 3.5 + 5)?>u" |
|
| 1136 | 1136 | !else |
| 1137 | - !define LABEL_LENGTH "<?php echo($certPasswordLength*3.5)?>u" |
|
| 1138 | - !define TEXT_START "<?php echo($certPasswordLength*3.5 +5)?>u" |
|
| 1137 | + !define LABEL_LENGTH "<?php echo($certPasswordLength * 3.5)?>u" |
|
| 1138 | + !define TEXT_START "<?php echo($certPasswordLength * 3.5 + 5)?>u" |
|
| 1139 | 1139 | !endif |
| 1140 | 1140 | ${NSD_CreateLabel} 0 35u ${LABEL_LENGTH} 12u "<?php echo $certPasswordLabel?>" |
| 1141 | 1141 | ${NSD_CreatePassword} ${TEXT_START} 34.5u 120u 12u "" |
@@ -1505,7 +1505,7 @@ discard block |
||
| 1505 | 1505 | Section "-start" |
| 1506 | 1506 | SectionIn RO |
| 1507 | 1507 | |
| 1508 | -!insertmacro MUI_HEADER_TEXT "<?php WindowsCommon::echoNsis( _("Installation"))?>" "<?php WindowsCommon::echoNsis( _("Checking for existing wireless profiles"))?>" |
|
| 1508 | +!insertmacro MUI_HEADER_TEXT "<?php WindowsCommon::echoNsis(_("Installation"))?>" "<?php WindowsCommon::echoNsis(_("Checking for existing wireless profiles"))?>" |
|
| 1509 | 1509 | !ifndef PWD |
| 1510 | 1510 | !include "certs.nsh" |
| 1511 | 1511 | !endif |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | if (isset(self::LANGS[$this->languageInstance->getLang()])) { |
| 135 | 135 | $language = self::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 |
||
| 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::CONFIG['CONSORTIUM']['display_name'], \config\ConfAssistant::CONFIG['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 |
||
| 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; |
@@ -245,11 +245,11 @@ discard block |
||
| 245 | 245 | $logoCount = count($logosToPlace); |
| 246 | 246 | if ($logoCount > 0) { |
| 247 | 247 | $voffset = $freeTop; |
| 248 | - $freeSpace = (int)round($this->background['freeHeight'] / ($logoCount + 1)); |
|
| 248 | + $freeSpace = (int) round($this->background['freeHeight'] / ($logoCount + 1)); |
|
| 249 | 249 | foreach ($logosToPlace as $logo) { |
| 250 | 250 | $voffset += $freeSpace; |
| 251 | 251 | $logoSize = $logo->getImageGeometry(); |
| 252 | - $hoffset = (int)round(($bgImageSize['width'] - $logoSize['width']) / 2); |
|
| 252 | + $hoffset = (int) round(($bgImageSize['width'] - $logoSize['width']) / 2); |
|
| 253 | 253 | $bgImage->compositeImage($logo, $logo->getImageCompose(), $hoffset, $voffset); |
| 254 | 254 | $voffset += $logoSize['height']; |
| 255 | 255 | } |
@@ -270,13 +270,13 @@ discard block |
||
| 270 | 270 | * @return string path to signed installer |
| 271 | 271 | */ |
| 272 | 272 | protected function signInstaller() { |
| 273 | - $fileName = $this->installerBasename . '.exe'; |
|
| 273 | + $fileName = $this->installerBasename.'.exe'; |
|
| 274 | 274 | if (!$this->sign) { |
| 275 | 275 | rename("installer.exe", $fileName); |
| 276 | 276 | return $fileName; |
| 277 | 277 | } |
| 278 | 278 | // are actually signing |
| 279 | - $outputFromSigning = system($this->sign . " installer.exe '$fileName' > /dev/null"); |
|
| 279 | + $outputFromSigning = system($this->sign." installer.exe '$fileName' > /dev/null"); |
|
| 280 | 280 | if ($outputFromSigning === FALSE) { |
| 281 | 281 | $this->loggerInstance->debug(2, "Signing the WindowsCommon installer $fileName FAILED!\n"); |
| 282 | 282 | } |
@@ -290,15 +290,15 @@ discard block |
||
| 290 | 290 | */ |
| 291 | 291 | protected function compileNSIS() { |
| 292 | 292 | if (\config\ConfAssistant::CONFIG['NSIS_VERSION'] >= 3) { |
| 293 | - $makensis = \config\ConfAssistant::CONFIG['PATHS']['makensis'] . " -INPUTCHARSET UTF8"; |
|
| 293 | + $makensis = \config\ConfAssistant::CONFIG['PATHS']['makensis']." -INPUTCHARSET UTF8"; |
|
| 294 | 294 | } else { |
| 295 | 295 | $makensis = \config\ConfAssistant::CONFIG['PATHS']['makensis']; |
| 296 | 296 | } |
| 297 | 297 | $lcAll = getenv("LC_ALL"); |
| 298 | 298 | putenv("LC_ALL=en_US.UTF-8"); |
| 299 | - $command = $makensis . ' -V4 cat.NSI > nsis.log 2>&1'; |
|
| 299 | + $command = $makensis.' -V4 cat.NSI > nsis.log 2>&1'; |
|
| 300 | 300 | system($command); |
| 301 | - putenv("LC_ALL=" . $lcAll); |
|
| 301 | + putenv("LC_ALL=".$lcAll); |
|
| 302 | 302 | $this->loggerInstance->debug(4, "compileNSIS:$command\n"); |
| 303 | 303 | } |
| 304 | 304 | |
@@ -314,10 +314,10 @@ discard block |
||
| 314 | 314 | 'email' => 'SUPPORT', |
| 315 | 315 | 'url' => 'URL', |
| 316 | 316 | ]; |
| 317 | - $s = "support_" . $type . "_substitute"; |
|
| 317 | + $s = "support_".$type."_substitute"; |
|
| 318 | 318 | $substitute = $this->translateString($this->$s, $this->codePage); |
| 319 | - $returnValue = !empty($attr['support:' . $type][0]) ? $attr['support:' . $type][0] : $substitute; |
|
| 320 | - return '!define ' . $supportString[$type] . ' "' . $returnValue . '"' . "\n"; |
|
| 319 | + $returnValue = !empty($attr['support:'.$type][0]) ? $attr['support:'.$type][0] : $substitute; |
|
| 320 | + return '!define '.$supportString[$type].' "'.$returnValue.'"'."\n"; |
|
| 321 | 321 | } |
| 322 | 322 | |
| 323 | 323 | /** |
@@ -327,20 +327,20 @@ discard block |
||
| 327 | 327 | * @return string |
| 328 | 328 | */ |
| 329 | 329 | protected function writeNsisDefines($attr) { |
| 330 | - $fcontents = "\n" . '!define NSIS_MAJOR_VERSION ' . \config\ConfAssistant::CONFIG['NSIS_VERSION']; |
|
| 330 | + $fcontents = "\n".'!define NSIS_MAJOR_VERSION '.\config\ConfAssistant::CONFIG['NSIS_VERSION']; |
|
| 331 | 331 | if ($attr['internal:profile_count'][0] > 1) { |
| 332 | - $fcontents .= "\n" . '!define USER_GROUP "' . $this->translateString(str_replace('"', '$\\"', $attr['profile:name'][0]), $this->codePage) . '" |
|
| 332 | + $fcontents .= "\n".'!define USER_GROUP "'.$this->translateString(str_replace('"', '$\\"', $attr['profile:name'][0]), $this->codePage).'" |
|
| 333 | 333 | '; |
| 334 | 334 | } |
| 335 | - $fcontents .= ' |
|
| 336 | -Caption "' . $this->translateString(sprintf(WindowsCommon::sprintNsis(_("%s installer for %s")), \config\ConfAssistant::CONFIG['CONSORTIUM']['display_name'], $attr['general:instname'][0]), $this->codePage) . '" |
|
| 337 | -!define APPLICATION "' . $this->translateString(sprintf(WindowsCommon::sprintNsis(_("%s installer for %s")), \config\ConfAssistant::CONFIG['CONSORTIUM']['display_name'], $attr['general:instname'][0]), $this->codePage) . '" |
|
| 338 | -!define VERSION "' . \core\CAT::VERSION_MAJOR . '.' . \core\CAT::VERSION_MINOR . '" |
|
| 335 | + $fcontents .= ' |
|
| 336 | +Caption "' . $this->translateString(sprintf(WindowsCommon::sprintNsis(_("%s installer for %s")), \config\ConfAssistant::CONFIG['CONSORTIUM']['display_name'], $attr['general:instname'][0]), $this->codePage).'" |
|
| 337 | +!define APPLICATION "' . $this->translateString(sprintf(WindowsCommon::sprintNsis(_("%s installer for %s")), \config\ConfAssistant::CONFIG['CONSORTIUM']['display_name'], $attr['general:instname'][0]), $this->codePage).'" |
|
| 338 | +!define VERSION "' . \core\CAT::VERSION_MAJOR.'.'.\core\CAT::VERSION_MINOR.'" |
|
| 339 | 339 | !define INSTALLER_NAME "installer.exe" |
| 340 | -!define LANG "' . $this->lang . '" |
|
| 341 | -!define LOCALE "' . preg_replace('/\..*$/', '', \config\Master::CONFIG['LANGUAGES'][$this->languageInstance->getLang()]['locale']) . '" |
|
| 340 | +!define LANG "' . $this->lang.'" |
|
| 341 | +!define LOCALE "' . preg_replace('/\..*$/', '', \config\Master::CONFIG['LANGUAGES'][$this->languageInstance->getLang()]['locale']).'" |
|
| 342 | 342 | ;-------------------------------- |
| 343 | -!define ORGANISATION "' . $this->translateString($attr['general:instname'][0], $this->codePage) . '" |
|
| 343 | +!define ORGANISATION "' . $this->translateString($attr['general:instname'][0], $this->codePage).'" |
|
| 344 | 344 | '; |
| 345 | 345 | $fcontents .= $this->getSupport($attr, 'email'); |
| 346 | 346 | $fcontents .= $this->getSupport($attr, 'url'); |
@@ -348,18 +348,18 @@ discard block |
||
| 348 | 348 | $fcontents .= '!define WIRED |
| 349 | 349 | '; |
| 350 | 350 | } |
| 351 | - $fcontents .= '!define PROVIDERID "urn:UUID:' . $this->deviceUUID . '" |
|
| 351 | + $fcontents .= '!define PROVIDERID "urn:UUID:'.$this->deviceUUID.'" |
|
| 352 | 352 | '; |
| 353 | 353 | if (!empty($attr['internal:realm'][0])) { |
| 354 | - $fcontents .= '!define REALM "' . $attr['internal:realm'][0] . '" |
|
| 354 | + $fcontents .= '!define REALM "'.$attr['internal:realm'][0].'" |
|
| 355 | 355 | '; |
| 356 | 356 | } |
| 357 | - if(!empty($attr['internal:hint_userinput_suffix'][0]) && $attr['internal:hint_userinput_suffix'][0] == 1) { |
|
| 358 | - $fcontents .= '!define HINT_USER_INPUT "' . $attr['internal:hint_userinput_suffix'][0] . '" |
|
| 357 | + if (!empty($attr['internal:hint_userinput_suffix'][0]) && $attr['internal:hint_userinput_suffix'][0] == 1) { |
|
| 358 | + $fcontents .= '!define HINT_USER_INPUT "'.$attr['internal:hint_userinput_suffix'][0].'" |
|
| 359 | 359 | '; |
| 360 | 360 | } |
| 361 | - if(!empty($attr['internal:verify_userinput_suffix'][0]) && $attr['internal:verify_userinput_suffix'][0] == 1) { |
|
| 362 | - $fcontents .= '!define VERIFY_USER_REALM_INPUT "' . $attr['internal:verify_userinput_suffix'][0] . '" |
|
| 361 | + if (!empty($attr['internal:verify_userinput_suffix'][0]) && $attr['internal:verify_userinput_suffix'][0] == 1) { |
|
| 362 | + $fcontents .= '!define VERIFY_USER_REALM_INPUT "'.$attr['internal:verify_userinput_suffix'][0].'" |
|
| 363 | 363 | '; |
| 364 | 364 | } |
| 365 | 365 | $fcontents .= $this->msInfoFile($attr); |
@@ -380,7 +380,7 @@ discard block |
||
| 380 | 380 | $out .= '!define EXTERNAL_INFO "'; |
| 381 | 381 | // $this->loggerInstance->debug(4,"Info file type ".$attr['support:info_file'][0]['mime']."\n"); |
| 382 | 382 | if ($attr['internal:info_file'][0]['mime'] == 'rtf') { |
| 383 | - $out = '!define LICENSE_FILE "' . $attr['internal:info_file'][0]['name']; |
|
| 383 | + $out = '!define LICENSE_FILE "'.$attr['internal:info_file'][0]['name']; |
|
| 384 | 384 | } elseif ($attr['internal:info_file'][0]['mime'] == 'txt') { |
| 385 | 385 | $infoFile = file_get_contents($attr['internal:info_file'][0]['name']); |
| 386 | 386 | if ($infoFile === FALSE) { |
@@ -389,14 +389,14 @@ discard block |
||
| 389 | 389 | if (\config\ConfAssistant::CONFIG['NSIS_VERSION'] >= 3) { |
| 390 | 390 | $infoFileConverted = $infoFile; |
| 391 | 391 | } else { |
| 392 | - $infoFileConverted = iconv('UTF-8', $this->codePage . '//TRANSLIT', $infoFile); |
|
| 392 | + $infoFileConverted = iconv('UTF-8', $this->codePage.'//TRANSLIT', $infoFile); |
|
| 393 | 393 | } |
| 394 | 394 | if ($infoFileConverted !== FALSE && strlen($infoFileConverted) > 0) { |
| 395 | 395 | file_put_contents('info_f.txt', $infoFileConverted); |
| 396 | 396 | $out = '!define LICENSE_FILE " info_f.txt'; |
| 397 | 397 | } |
| 398 | 398 | } else { |
| 399 | - $out = '!define EXTERNAL_INFO "' . $attr['internal:info_file'][0]['name']; |
|
| 399 | + $out = '!define EXTERNAL_INFO "'.$attr['internal:info_file'][0]['name']; |
|
| 400 | 400 | } |
| 401 | 401 | |
| 402 | 402 | $out .= "\"\n"; |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | <NodeName>Credential</NodeName> |
| 117 | 117 | <Node> |
| 118 | 118 | <NodeName>CreationDate</NodeName> |
| 119 | - <Value>'.$now->format("Y-m-d") . "T" . $now->format("H:i:s") . "Z".'</Value> |
|
| 119 | + <Value>'.$now->format("Y-m-d")."T".$now->format("H:i:s")."Z".'</Value> |
|
| 120 | 120 | </Node> |
| 121 | 121 | <Node> |
| 122 | 122 | <NodeName>DigitalCertificate</NodeName> |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | <NodeName>HomeSP</NodeName> |
| 139 | 139 | <Node> |
| 140 | 140 | <NodeName>FriendlyName</NodeName> |
| 141 | - <Value>'.sprintf(_("%s via Passpoint"),\config\ConfAssistant::CONFIG['CONSORTIUM']['display_name']).'</Value> |
|
| 141 | + <Value>'.sprintf(_("%s via Passpoint"), \config\ConfAssistant::CONFIG['CONSORTIUM']['display_name']).'</Value> |
|
| 142 | 142 | </Node> |
| 143 | 143 | <Node> |
| 144 | 144 | <NodeName>FQDN</NodeName> |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | $numberOfOi = count(\config\ConfAssistant::CONFIG['CONSORTIUM']['interworking-consortium-oi']); |
| 152 | 152 | foreach (\config\ConfAssistant::CONFIG['CONSORTIUM']['interworking-consortium-oi'] as $index => $oneOi) { |
| 153 | 153 | // according to spec, must be lowercase ASCII without dashes |
| 154 | - $oiList .= str_replace("-","",trim(strtolower($oneOi))); |
|
| 154 | + $oiList .= str_replace("-", "", trim(strtolower($oneOi))); |
|
| 155 | 155 | if ($index < $numberOfOi - 1) { |
| 156 | 156 | // according to spec, comma-separated |
| 157 | 157 | $oiList .= ","; |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | Content-Type: application/x-pkcs12 |
| 190 | 190 | Content-Transfer-Encoding: base64 |
| 191 | 191 | |
| 192 | -'.chunk_split(base64_encode($this->clientCert['certdataclear']), 76, "\n"). // is PKCS#12, with encrypted key |
|
| 192 | +'.chunk_split(base64_encode($this->clientCert['certdataclear']), 76, "\n").// is PKCS#12, with encrypted key |
|
| 193 | 193 | '--{boundary}'; |
| 194 | 194 | |
| 195 | 195 | // trail this with a double slash and a newline |
@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | // have the notion of signing |
| 210 | 210 | // but if they ever change their mind, we are prepared |
| 211 | 211 | |
| 212 | - $outputFromSigning = system($this->sign . " installer_profile '$fileName' > /dev/null"); |
|
| 212 | + $outputFromSigning = system($this->sign." installer_profile '$fileName' > /dev/null"); |
|
| 213 | 213 | if ($outputFromSigning === FALSE) { |
| 214 | 214 | $this->loggerInstance->debug(2, "Signing the ONC installer $fileName FAILED!\n"); |
| 215 | 215 | } |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | |
| 22 | 22 | // please run this as a cron job every hour |
| 23 | 23 | |
| 24 | -require_once dirname(dirname(__FILE__)) . "/config/_config.php"; |
|
| 24 | +require_once dirname(dirname(__FILE__))."/config/_config.php"; |
|
| 25 | 25 | |
| 26 | 26 | // iterate through all federations and see if there are recently expired |
| 27 | 27 | // invitations for any of them |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | $admins = $this_fed->listFederationAdmins(); |
| 56 | 56 | $mailtext = "Hello, |
| 57 | 57 | |
| 58 | -invitation tokens for the following new ". \config\ConfAssistant::CONFIG['CONSORTIUM']['nomenclature_institution'] ." have recently expired: |
|
| 58 | +invitation tokens for the following new ". \config\ConfAssistant::CONFIG['CONSORTIUM']['nomenclature_institution']." have recently expired: |
|
| 59 | 59 | |
| 60 | 60 | "; |
| 61 | 61 | foreach ($listofinstnames as $instname) { |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | if ($numberofexistingidps > 0) { |
| 66 | 66 | $mailtext .= " |
| 67 | 67 | |
| 68 | -Additionally, $numberofexistingidps invitations for an existing ". \config\ConfAssistant::CONFIG['CONSORTIUM']['nomenclature_institution']." have expired. |
|
| 68 | +Additionally, $numberofexistingidps invitations for an existing ".\config\ConfAssistant::CONFIG['CONSORTIUM']['nomenclature_institution']." have expired. |
|
| 69 | 69 | "; |
| 70 | 70 | } |
| 71 | 71 | $mailtext .= " |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | |
| 74 | 74 | Greetings, |
| 75 | 75 | |
| 76 | -A humble " . \config\Master::CONFIG['APPEARANCE']['productname'] . " cron job |
|
| 76 | +A humble " . \config\Master::CONFIG['APPEARANCE']['productname']." cron job |
|
| 77 | 77 | "; |
| 78 | 78 | |
| 79 | 79 | foreach ($admins as $admin) { |
@@ -150,7 +150,6 @@ |
||
| 150 | 150 | * mails, just configure the signing cert with these parameters. All must |
| 151 | 151 | * be non-NULL for signing to happen. If you don't need a keypass, make |
| 152 | 152 | * it an empty string instead. |
| 153 | - |
|
| 154 | 153 | * @var array |
| 155 | 154 | */ |
| 156 | 155 | 'MAILSETTINGS' => [// we always use Submission |
@@ -216,7 +216,7 @@ discard block |
||
| 216 | 216 | 'db' => 'cat', |
| 217 | 217 | 'user' => 'someuser', |
| 218 | 218 | 'pass' => 'somepass', |
| 219 | - 'readonly' => FALSE,], |
|
| 219 | + 'readonly' => FALSE, ], |
|
| 220 | 220 | // this DB stores diagnostics data. The connection details can be |
| 221 | 221 | // identical to INST as there is no table overlap |
| 222 | 222 | 'DIAGNOSTICS' => [ |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | 'db' => 'cat', |
| 225 | 225 | 'user' => 'someuser', |
| 226 | 226 | 'pass' => 'somepass', |
| 227 | - 'readonly' => FALSE,], |
|
| 227 | + 'readonly' => FALSE, ], |
|
| 228 | 228 | // this slice of DB user is about the downloads table. The corresponding |
| 229 | 229 | // DB user should have write access to update statistics and the cache |
| 230 | 230 | // locations of installers. |
@@ -234,7 +234,7 @@ discard block |
||
| 234 | 234 | 'db' => 'cat', |
| 235 | 235 | 'user' => 'someuser', |
| 236 | 236 | 'pass' => 'somepass', |
| 237 | - 'readonly' => FALSE,], |
|
| 237 | + 'readonly' => FALSE, ], |
|
| 238 | 238 | // this slice of DB use is about user management in the user_options |
| 239 | 239 | // table. Giving the corresponding user only read-only access means that |
| 240 | 240 | // all user properties have to "magically" occur in the table by OOB |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | 'db' => 'cat', |
| 246 | 246 | 'user' => 'someuser', |
| 247 | 247 | 'pass' => 'somepass', |
| 248 | - 'readonly' => FALSE,], |
|
| 248 | + 'readonly' => FALSE, ], |
|
| 249 | 249 | /* If you use this tool in conjunction with an external customer management database, you can configure that every |
| 250 | 250 | * institution entry in CAT MUST correspond to a customer entry in an external database. If you want this, set this |
| 251 | 251 | * config variable to TRUE. |
@@ -265,7 +265,7 @@ discard block |
||
| 265 | 265 | 'db' => 'customer_db', |
| 266 | 266 | 'user' => 'customerservice', |
| 267 | 267 | 'pass' => '2lame4u', |
| 268 | - 'readonly' => TRUE,], |
|
| 268 | + 'readonly' => TRUE, ], |
|
| 269 | 269 | 'enforce-external-sync' => TRUE, |
| 270 | 270 | ], |
| 271 | 271 | /** |
@@ -21,9 +21,9 @@ discard block |
||
| 21 | 21 | */ |
| 22 | 22 | |
| 23 | 23 | require_once "autoloader.php"; |
| 24 | -require_once __DIR__ . "/../packageRoot.php"; |
|
| 24 | +require_once __DIR__."/../packageRoot.php"; |
|
| 25 | 25 | |
| 26 | -if (!file_exists(ROOT . "/config/Master.php")) { |
|
| 26 | +if (!file_exists(ROOT."/config/Master.php")) { |
|
| 27 | 27 | echo "Master configuration file not found. You need to configure the product! At least config/Master.php is required!"; |
| 28 | 28 | throw new Exception("Master config file not found!"); |
| 29 | 29 | } |
@@ -31,14 +31,14 @@ discard block |
||
| 31 | 31 | /* load sub-configs if we are dealing with those in this installation */ |
| 32 | 32 | |
| 33 | 33 | if (\config\Master::CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_SILVERBULLET'] == 'LOCAL' || \config\Master::CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_RADIUS'] == 'LOCAL') { |
| 34 | - if (!file_exists(ROOT . "/config/ConfAssistant.php")) { |
|
| 34 | + if (!file_exists(ROOT."/config/ConfAssistant.php")) { |
|
| 35 | 35 | echo "ConfAssistant configuration file not found. You need to configure the product!"; |
| 36 | 36 | throw new Exception("ConfAssistant config file not found!"); |
| 37 | 37 | } |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | if (\config\Master::CONFIG['FUNCTIONALITY_LOCATIONS']['DIAGNOSTICS'] == 'LOCAL') { |
| 41 | - if (!file_exists(ROOT . "/config/Diagnostics.php")) { |
|
| 41 | + if (!file_exists(ROOT."/config/Diagnostics.php")) { |
|
| 42 | 42 | echo "Diagnostics configuration file not found. You need to configure the product!"; |
| 43 | 43 | throw new Exception("Diagnostics config file not found!"); |
| 44 | 44 | } |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | * <base_url>/copyright.php after deploying the software |
| 20 | 20 | */ |
| 21 | 21 | |
| 22 | -require_once __DIR__ . "/../core/Psr4Autoloader.php"; |
|
| 22 | +require_once __DIR__."/../core/Psr4Autoloader.php"; |
|
| 23 | 23 | use core\autoloader\Psr4Autoloader; |
| 24 | 24 | |
| 25 | 25 | // instantiate the loader |
@@ -30,13 +30,13 @@ discard block |
||
| 30 | 30 | |
| 31 | 31 | // register the base directories for the namespace prefix |
| 32 | 32 | // include configuration |
| 33 | -$loader->addNamespace('config', __DIR__ ); |
|
| 33 | +$loader->addNamespace('config', __DIR__); |
|
| 34 | 34 | // include CAT/core library |
| 35 | -$loader->addNamespace('core', __DIR__ . "/../core"); |
|
| 35 | +$loader->addNamespace('core', __DIR__."/../core"); |
|
| 36 | 36 | // include CAT/devices library |
| 37 | -$loader->addNamespace('devices', __DIR__ . "/../devices"); |
|
| 37 | +$loader->addNamespace('devices', __DIR__."/../devices"); |
|
| 38 | 38 | // include CAT/web library |
| 39 | -$loader->addNamespace('web', __DIR__ . "/../web"); |
|
| 39 | +$loader->addNamespace('web', __DIR__."/../web"); |
|
| 40 | 40 | |
| 41 | 41 | // include PHPMailer library |
| 42 | -$loader->addNamespace('PHPMailer\PHPMailer', __DIR__ . "/../core/PHPMailer/src"); |
|
| 42 | +$loader->addNamespace('PHPMailer\PHPMailer', __DIR__."/../core/PHPMailer/src"); |
|