@@ -9,7 +9,7 @@ |
||
9 | 9 | */ |
10 | 10 | ?> |
11 | 11 | <h1>Example Skin (main user frontpage)</h1> |
12 | -<img src="<?php echo $Gui->skinObject->findresourceUrl("IMAGES","consortium_logo.png");?>"/> |
|
12 | +<img src="<?php echo $Gui->skinObject->findresourceUrl("IMAGES", "consortium_logo.png"); ?>"/> |
|
13 | 13 | <p>This skin is much more sober and less bloated than the default one. As it happens, it also doesn't do anything.</p> |
14 | 14 | <p>But at least it goes to show that it's possible to include custom images/CSS/external software using findResourceUrl(..., $filename): |
15 | -<img src="<?php echo $Gui->skinObject->findresourceUrl("IMAGES","custom.png");?>"/> |
|
15 | +<img src="<?php echo $Gui->skinObject->findresourceUrl("IMAGES", "custom.png"); ?>"/> |
@@ -52,7 +52,7 @@ |
||
52 | 52 | they are from the same user group. You are not allowed to share them to an unlimited |
53 | 53 | audience (e.g. on a publicly accessible web server).</li> |
54 | 54 | <li>If You are an eduroam Identity Provider administrator, you are allowed to download and pass on the Installers to |
55 | -your own <?php echo CONFIG_CONFASSISTANT['CONSORTIUM']['nomenclature_institution'];?> end users, e.g. on the support web pages of your <?php echo CONFIG_CONFASSISTANT['CONSORTIUM']['nomenclature_institution'];?>, on Welcome Package CDs or USB sticks, etc.</li> |
|
55 | +your own <?php echo CONFIG_CONFASSISTANT['CONSORTIUM']['nomenclature_institution']; ?> end users, e.g. on the support web pages of your <?php echo CONFIG_CONFASSISTANT['CONSORTIUM']['nomenclature_institution']; ?>, on Welcome Package CDs or USB sticks, etc.</li> |
|
56 | 56 | <li>If You are a third-party not affiliated with eduroam, you are only allowed to download and pass on |
57 | 57 | the Metadata and/or the Installers after having received written permission by the eduroam Operations team.</li> |
58 | 58 | </ul> |
@@ -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,11 +30,11 @@ discard block |
||
30 | 30 | |
31 | 31 | // register the base directories for the namespace prefix |
32 | 32 | // include CAT/core library |
33 | -$loader->addNamespace('core', __DIR__ . "/../core"); |
|
33 | +$loader->addNamespace('core', __DIR__."/../core"); |
|
34 | 34 | // include CAT/devices library |
35 | -$loader->addNamespace('devices', __DIR__ . "/../devices"); |
|
35 | +$loader->addNamespace('devices', __DIR__."/../devices"); |
|
36 | 36 | // include CAT/web library |
37 | -$loader->addNamespace('web', __DIR__ . "/../web"); |
|
37 | +$loader->addNamespace('web', __DIR__."/../web"); |
|
38 | 38 | |
39 | 39 | // include PHPMailer library |
40 | -$loader->addNamespace('PHPMailer\PHPMailer', __DIR__ . "/../core/PHPMailer/src"); |
|
40 | +$loader->addNamespace('PHPMailer\PHPMailer', __DIR__."/../core/PHPMailer/src"); |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | */ |
21 | 21 | |
22 | 22 | require_once "autoloader.php"; |
23 | -require_once __DIR__ . "/../packageRoot.php"; |
|
23 | +require_once __DIR__."/../packageRoot.php"; |
|
24 | 24 | |
25 | 25 | /* This code block compares the template config against the actual one to find |
26 | 26 | * out which of the values are MISSING, which are still at DEFAULT and which |
@@ -88,12 +88,12 @@ discard block |
||
88 | 88 | */ |
89 | 89 | // this is the actual config |
90 | 90 | |
91 | -if (!file_exists(ROOT . "/config/config-master.php")) { |
|
91 | +if (!file_exists(ROOT."/config/config-master.php")) { |
|
92 | 92 | echo "Master configuration file not found. You need to configure the product! At least config-master.php is required!"; |
93 | 93 | throw new Exception("Master config file not found!"); |
94 | 94 | } |
95 | 95 | |
96 | -require ROOT . "/config/config-master.php"; |
|
96 | +require ROOT."/config/config-master.php"; |
|
97 | 97 | |
98 | 98 | /* as a test for the config comparison, run this, display in browser and exit |
99 | 99 | |
@@ -109,14 +109,14 @@ discard block |
||
109 | 109 | /* load sub-configs if we are dealing with those in this installation */ |
110 | 110 | |
111 | 111 | if (CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_SILVERBULLET'] == 'LOCAL' || CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_RADIUS'] == 'LOCAL') { |
112 | - include ROOT . "/config/config-confassistant.php"; |
|
112 | + include ROOT."/config/config-confassistant.php"; |
|
113 | 113 | } else { // we want to define the constant itself anyway, to avoid some ugly warnings on the console |
114 | 114 | // this is done with an inline include |
115 | 115 | define("CONFIG_CONFASSISTANT", []); |
116 | 116 | } |
117 | 117 | |
118 | 118 | if (CONFIG['FUNCTIONALITY_LOCATIONS']['DIAGNOSTICS'] == 'LOCAL') { |
119 | - include ROOT . "/config/config-diagnostics.php"; |
|
119 | + include ROOT."/config/config-diagnostics.php"; |
|
120 | 120 | } else { // same here |
121 | 121 | define("CONFIG_DIAGNOSTICS", []); |
122 | 122 | } |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | function CAT_session_start() { |
130 | 130 | if (session_status() != PHP_SESSION_ACTIVE) { |
131 | 131 | session_name("CAT"); |
132 | - session_set_cookie_params(0, "/", $_SERVER['SERVER_NAME'], (isset($_SERVER['HTTPS']) ? TRUE : FALSE )); |
|
132 | + session_set_cookie_params(0, "/", $_SERVER['SERVER_NAME'], (isset($_SERVER['HTTPS']) ? TRUE : FALSE)); |
|
133 | 133 | session_start(); |
134 | 134 | } |
135 | 135 | } |
@@ -97,10 +97,10 @@ |
||
97 | 97 | public function addNamespace($prefix, $base_dir, $prepend = false) |
98 | 98 | { |
99 | 99 | // normalize namespace prefix |
100 | - $prefix = trim($prefix, '\\') . '\\'; |
|
100 | + $prefix = trim($prefix, '\\').'\\'; |
|
101 | 101 | |
102 | 102 | // normalize the base directory with a trailing separator |
103 | - $base_dir = rtrim($base_dir, DIRECTORY_SEPARATOR) . '/'; |
|
103 | + $base_dir = rtrim($base_dir, DIRECTORY_SEPARATOR).'/'; |
|
104 | 104 | |
105 | 105 | // initialize the namespace prefix array |
106 | 106 | if (isset($this->prefixes[$prefix]) === false) { |
@@ -104,11 +104,11 @@ discard block |
||
104 | 104 | $this->possibleFailureReasons = $_SESSION["SUSPECTS"] ?? []; // if we know nothing, don't talk to anyone |
105 | 105 | $this->additionalFindings = $_SESSION["EVIDENCE"] ?? []; |
106 | 106 | |
107 | - $this->subjectPrefix = _("[eduroam Diagnostics]") . " "; |
|
107 | + $this->subjectPrefix = _("[eduroam Diagnostics]")." "; |
|
108 | 108 | $this->finalGreeting = "\n" |
109 | 109 | . _("(This service is in an early stage. We apologise if this is a false alert. If this is the case, please send an email report to [email protected], forwarding the entire message (including the 'SUSPECTS' and 'EVIDENCE' data at the end), and explain why this is a false positive.)") |
110 | 110 | . "\n" |
111 | - . _("Yours sincerely,") . "\n" |
|
111 | + . _("Yours sincerely,")."\n" |
|
112 | 112 | . "\n" |
113 | 113 | . _("Ed U. Roam, the eduroam diagnostics algorithm"); |
114 | 114 | |
@@ -119,13 +119,13 @@ discard block |
||
119 | 119 | "bcc" => [], |
120 | 120 | "reply-to" => [Logopath::EDUROAM_OT], |
121 | 121 | "subject" => _("[POLICYVIOLATION NATIONAL] IdP with no entry in eduroam database"), |
122 | - "body" => _("Dear NRO administrator,") . "\n" |
|
122 | + "body" => _("Dear NRO administrator,")."\n" |
|
123 | 123 | . "\n" |
124 | - . wordwrap(sprintf(_("an end-user requested diagnostics for realm %s. Real-time connectivity checks determined that the realm exists, but we were unable to find an IdP with that realm in the eduroam database."), "foo.bar")) . "\n" |
|
124 | + . wordwrap(sprintf(_("an end-user requested diagnostics for realm %s. Real-time connectivity checks determined that the realm exists, but we were unable to find an IdP with that realm in the eduroam database."), "foo.bar"))."\n" |
|
125 | 125 | . "\n" |
126 | - . _("By not listing IdPs in the eduroam database, you are violating the eduroam policy.") . "\n" |
|
126 | + . _("By not listing IdPs in the eduroam database, you are violating the eduroam policy.")."\n" |
|
127 | 127 | . "\n" |
128 | - . _("Additionally, this creates operational issues. In particular, we are unable to direct end users to their IdP for further diagnosis/instructions because there are no contact points for that IdP in the database.") . "\n" |
|
128 | + . _("Additionally, this creates operational issues. In particular, we are unable to direct end users to their IdP for further diagnosis/instructions because there are no contact points for that IdP in the database.")."\n" |
|
129 | 129 | . "\n" |
130 | 130 | . "Please stop the policy violation ASAP by listing the IdP which is associated to this realm.", |
131 | 131 | ], |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | |
280 | 280 | $handle = \core\common\OutsideComm::mailHandle(); |
281 | 281 | // let's identify outselves |
282 | - $handle->FromName = CONFIG['APPEARANCE']['productname'] . " Real-Time Diagnostics System"; |
|
282 | + $handle->FromName = CONFIG['APPEARANCE']['productname']." Real-Time Diagnostics System"; |
|
283 | 283 | // add recipients |
284 | 284 | foreach (Logopath::CATEGORYBINDING as $arrayName => $functionName) { |
285 | 285 | foreach ($theMail[$arrayName] as $onePrincipal) { |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | |
24 | 24 | use \Exception; |
25 | 25 | |
26 | -require_once dirname(dirname(__DIR__)) . "/config/_config.php"; |
|
26 | +require_once dirname(dirname(__DIR__))."/config/_config.php"; |
|
27 | 27 | |
28 | 28 | /** |
29 | 29 | * The overall coordination class that runs all kinds of tests to find out where |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | if ($this->idPFederation === NULL && preg_match("/\.(..)$/", $realm, $matches)) { |
76 | 76 | $this->idPFederation = strtoupper($matches[1]); |
77 | 77 | } |
78 | - $this->loggerInstance->debug(4, "XYZ: IdP-side NRO is " . $this->idPFederation . "\n"); |
|
78 | + $this->loggerInstance->debug(4, "XYZ: IdP-side NRO is ".$this->idPFederation."\n"); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | /* The eduroam OT monitoring has the following return codes: |
@@ -397,12 +397,12 @@ discard block |
||
397 | 397 | break; |
398 | 398 | case \core\AbstractProfile::READINESS_LEVEL_NOTREADY: |
399 | 399 | $this->additionalFindings[AbstractTest::INFRA_IDP_RADIUS][] = ["Profile" => "UNCONCLUSIVE"]; |
400 | - $this->testsuite = new RADIUSTests($this->realm, "anonymous@" . $this->realm); |
|
400 | + $this->testsuite = new RADIUSTests($this->realm, "anonymous@".$this->realm); |
|
401 | 401 | break; |
402 | 402 | default: |
403 | 403 | } |
404 | 404 | } else { |
405 | - $this->testsuite = new RADIUSTests($this->realm, "anonymous@" . $this->realm); |
|
405 | + $this->testsuite = new RADIUSTests($this->realm, "anonymous@".$this->realm); |
|
406 | 406 | } |
407 | 407 | } |
408 | 408 |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | |
22 | 22 | namespace core\diag; |
23 | 23 | |
24 | -require_once dirname(dirname(__DIR__)) . "/config/_config.php"; |
|
24 | +require_once dirname(dirname(__DIR__))."/config/_config.php"; |
|
25 | 25 | |
26 | 26 | /** |
27 | 27 | * Test suite to verify that a given NAI realm has NAPTR records according to |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | $this->NAPTR_executed = RADIUSTests::RETVAL_NOTCONFIGURED; |
170 | 170 | return RADIUSTests::RETVAL_NOTCONFIGURED; |
171 | 171 | } |
172 | - $NAPTRs = dns_get_record($this->realm . ".", DNS_NAPTR); |
|
172 | + $NAPTRs = dns_get_record($this->realm.".", DNS_NAPTR); |
|
173 | 173 | if ($NAPTRs === FALSE || count($NAPTRs) == 0) { |
174 | 174 | $this->NAPTR_executed = RFC7585Tests::RETVAL_NONAPTR; |
175 | 175 | return RFC7585Tests::RETVAL_NONAPTR; |
@@ -142,17 +142,17 @@ discard block |
||
142 | 142 | foreach (array_keys($this->typeDb) as $name) { |
143 | 143 | if ($className === 0) { |
144 | 144 | $tempArray[] = $name; |
145 | - } elseif (preg_match('/^' . $className . ':/', $name) > 0) { |
|
145 | + } elseif (preg_match('/^'.$className.':/', $name) > 0) { |
|
146 | 146 | $tempArray[] = $name; |
147 | 147 | } |
148 | 148 | } |
149 | 149 | $returnArray = $tempArray; |
150 | 150 | // remove silverbullet-specific options if this deployment is not SB |
151 | 151 | foreach ($tempArray as $key => $val) { |
152 | - if (( CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_SILVERBULLET'] != 'LOCAL') && (preg_match('/^fed:silverbullet/', $val) > 0)) { |
|
152 | + if ((CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_SILVERBULLET'] != 'LOCAL') && (preg_match('/^fed:silverbullet/', $val) > 0)) { |
|
153 | 153 | unset($returnArray[$key]); |
154 | 154 | } |
155 | - if (( CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_RADIUS'] != 'LOCAL') && (preg_match('/^fed:minted_ca_file/', $val) > 0)) { |
|
155 | + if ((CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT_RADIUS'] != 'LOCAL') && (preg_match('/^fed:minted_ca_file/', $val) > 0)) { |
|
156 | 156 | unset($returnArray[$key]); |
157 | 157 | } |
158 | 158 | } |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | if (isset($this->typeDb[$optionname])) { |
172 | 172 | return $this->typeDb[$optionname]; |
173 | 173 | } |
174 | - throw new Exception("Metadata about an option was requested, but the option name does not exist in the system: " . htmlentities($optionname)); |
|
174 | + throw new Exception("Metadata about an option was requested, but the option name does not exist in the system: ".htmlentities($optionname)); |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | /** |