@@ -20,7 +20,7 @@ |
||
20 | 20 | */ |
21 | 21 | ?> |
22 | 22 | <?php |
23 | -require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/config/_config.php"; |
|
23 | +require_once dirname(dirname(dirname(dirname(__FILE__))))."/config/_config.php"; |
|
24 | 24 | |
25 | 25 | $auth = new \web\lib\admin\Authentication(); |
26 | 26 |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | ?> |
22 | 22 | <?php |
23 | 23 | |
24 | -require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/config/_config.php"; |
|
24 | +require_once dirname(dirname(dirname(dirname(__FILE__))))."/config/_config.php"; |
|
25 | 25 | |
26 | 26 | /** |
27 | 27 | * retrieves a binary object from the database and pushes it out to the browser |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | // Set data type and caching for 30 days |
41 | 41 | $info = new finfo(); |
42 | 42 | $filetype = $info->buffer($finalBlob, FILEINFO_MIME_TYPE); |
43 | - header("Content-type: " . $filetype); |
|
43 | + header("Content-type: ".$filetype); |
|
44 | 44 | |
45 | 45 | switch ($filetype) { |
46 | 46 | case "text/rtf": // fall-through, same treatment |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | $offset = 60 * 60 * 24 * 30; |
59 | 59 | // gmdate can't possibly fail, because it operates on time() and an integer offset |
60 | 60 | |
61 | - $ExpStr = "Expires: " . /** @scrutinizer ignore-type */ gmdate("D, d M Y H:i:s", time() + $offset) . " GMT"; |
|
61 | + $ExpStr = "Expires: "./** @scrutinizer ignore-type */ gmdate("D, d M Y H:i:s", time() + $offset)." GMT"; |
|
62 | 62 | header($ExpStr); |
63 | 63 | |
64 | 64 | // Print out the image |
@@ -99,84 +99,84 @@ |
||
99 | 99 | } |
100 | 100 | |
101 | 101 | switch ($operationMode) { |
102 | - case OPERATION_MODE_EDIT: |
|
103 | - $idp = $validator->IdP($_GET['inst_id']); |
|
104 | - // editing IdPs is done from within the popup. When we're done, send the |
|
105 | - // user back to the popup (append the result of the operation later) |
|
106 | - $redirect_destination = "manageAdmins.inc.php?inst_id=" . $idp->identifier . "&"; |
|
107 | - $mailaddress = abortOnBogusMail($newmailaddress, $redirect_destination); |
|
108 | - // is the user primary admin of this IdP? |
|
109 | - $is_owner = $idp->isPrimaryOwner($_SESSION['user']); |
|
110 | - // check if he is (also) federation admin for the federation this IdP is in. His invitations have more blessing then. |
|
111 | - $fedadmin = $userObject->isFederationAdmin($idp->federation); |
|
112 | - // check if he is either one, if not, complain |
|
113 | - if (!$is_owner && !$fedadmin) { |
|
114 | - echo "<p>" . sprintf(_("Something's wrong... you are a %s admin, but not for the %s the requested %s belongs to!"), $uiElements->nomenclatureFed, $uiElements->nomenclatureFed, $uiElements->nomenclatureInst) . "</p>"; |
|
115 | - exit(1); |
|
116 | - } |
|
102 | + case OPERATION_MODE_EDIT: |
|
103 | + $idp = $validator->IdP($_GET['inst_id']); |
|
104 | + // editing IdPs is done from within the popup. When we're done, send the |
|
105 | + // user back to the popup (append the result of the operation later) |
|
106 | + $redirect_destination = "manageAdmins.inc.php?inst_id=" . $idp->identifier . "&"; |
|
107 | + $mailaddress = abortOnBogusMail($newmailaddress, $redirect_destination); |
|
108 | + // is the user primary admin of this IdP? |
|
109 | + $is_owner = $idp->isPrimaryOwner($_SESSION['user']); |
|
110 | + // check if he is (also) federation admin for the federation this IdP is in. His invitations have more blessing then. |
|
111 | + $fedadmin = $userObject->isFederationAdmin($idp->federation); |
|
112 | + // check if he is either one, if not, complain |
|
113 | + if (!$is_owner && !$fedadmin) { |
|
114 | + echo "<p>" . sprintf(_("Something's wrong... you are a %s admin, but not for the %s the requested %s belongs to!"), $uiElements->nomenclatureFed, $uiElements->nomenclatureFed, $uiElements->nomenclatureInst) . "</p>"; |
|
115 | + exit(1); |
|
116 | + } |
|
117 | 117 | |
118 | - $prettyprintname = $idp->name; |
|
119 | - $newtokens = $mgmt->createTokens($fedadmin, $mailaddress, $idp); |
|
120 | - $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP " . $idp->identifier . " - Token created for " . implode(",", $mailaddress)); |
|
121 | - $introtext = "CO-ADMIN"; |
|
122 | - break; |
|
123 | - case OPERATION_MODE_NEWUNLINKED: |
|
124 | - $redirect_destination = "../overview_federation.php?"; |
|
125 | - $mailaddress = abortOnBogusMail($newmailaddress, $redirect_destination); |
|
126 | - // run an input check and conversion of the raw inputs... just in case |
|
127 | - $newinstname = $validator->string($_POST['name']); |
|
128 | - $newcountry = $validator->string($_POST['country']); |
|
129 | - $new_idp_authorized_fedadmin = $userObject->isFederationAdmin($newcountry); |
|
130 | - if ($new_idp_authorized_fedadmin !== TRUE) { |
|
131 | - throw new Exception("Something's wrong... you want to create a new " . $uiElements->nomenclatureInst . ", but are not a " . $uiElements->nomenclatureFed . " admin for the " . $uiElements->nomenclatureFed . " it should be in!"); |
|
132 | - } |
|
133 | - $federation = $validator->Federation($newcountry); |
|
134 | - $prettyprintname = $newinstname; |
|
135 | - $introtext = "NEW-FED"; |
|
136 | - // send the user back to his federation overview page, append the result of the operation later |
|
137 | - // do the token creation magic |
|
138 | - $newtokens = $mgmt->createTokens(TRUE, $mailaddress, $newinstname, 0, $newcountry); |
|
139 | - $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP FUTURE - Token created for " . implode(",", $mailaddress)); |
|
140 | - break; |
|
141 | - case OPERATION_MODE_NEWFROMDB: |
|
142 | - $redirect_destination = "../overview_federation.php?"; |
|
143 | - $mailaddress = abortOnBogusMail($newmailaddress, $redirect_destination); |
|
144 | - // a real external DB entry was submitted and all the required parameters are there |
|
145 | - $newexternalid = $validator->string($_POST['externals']); |
|
146 | - $extinfo = $catInstance->getExternalDBEntityDetails($newexternalid); |
|
147 | - $new_idp_authorized_fedadmin = $userObject->isFederationAdmin($extinfo['country']); |
|
148 | - if ($new_idp_authorized_fedadmin !== TRUE) { |
|
149 | - throw new Exception("Something's wrong... you want to create a new " . $uiElements->nomenclatureInst . ", but are not a " . $uiElements->nomenclatureFed . " admin for the " . $uiElements->nomenclatureFed . " it should be in!"); |
|
150 | - } |
|
151 | - $federation = $validator->Federation($extinfo['country']); |
|
152 | - $newcountry = $extinfo['country']; |
|
153 | - // see if the inst name is defined in the currently set language; if not, pick its English name; if N/A, pick the last in the list |
|
154 | - $prettyprintname = ""; |
|
155 | - foreach ($extinfo['names'] as $lang => $name) { |
|
156 | - if ($lang == $languageInstance->getLang()) { |
|
157 | - $prettyprintname = $name; |
|
118 | + $prettyprintname = $idp->name; |
|
119 | + $newtokens = $mgmt->createTokens($fedadmin, $mailaddress, $idp); |
|
120 | + $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP " . $idp->identifier . " - Token created for " . implode(",", $mailaddress)); |
|
121 | + $introtext = "CO-ADMIN"; |
|
122 | + break; |
|
123 | + case OPERATION_MODE_NEWUNLINKED: |
|
124 | + $redirect_destination = "../overview_federation.php?"; |
|
125 | + $mailaddress = abortOnBogusMail($newmailaddress, $redirect_destination); |
|
126 | + // run an input check and conversion of the raw inputs... just in case |
|
127 | + $newinstname = $validator->string($_POST['name']); |
|
128 | + $newcountry = $validator->string($_POST['country']); |
|
129 | + $new_idp_authorized_fedadmin = $userObject->isFederationAdmin($newcountry); |
|
130 | + if ($new_idp_authorized_fedadmin !== TRUE) { |
|
131 | + throw new Exception("Something's wrong... you want to create a new " . $uiElements->nomenclatureInst . ", but are not a " . $uiElements->nomenclatureFed . " admin for the " . $uiElements->nomenclatureFed . " it should be in!"); |
|
158 | 132 | } |
159 | - } |
|
160 | - if ($prettyprintname == "" && isset($extinfo['names']['en'])) { |
|
161 | - $prettyprintname = $extinfo['names']['en']; |
|
162 | - } |
|
163 | - if ($prettyprintname == "") { |
|
164 | - foreach ($extinfo['names'] as $name) { |
|
165 | - $prettyprintname = $name; |
|
133 | + $federation = $validator->Federation($newcountry); |
|
134 | + $prettyprintname = $newinstname; |
|
135 | + $introtext = "NEW-FED"; |
|
136 | + // send the user back to his federation overview page, append the result of the operation later |
|
137 | + // do the token creation magic |
|
138 | + $newtokens = $mgmt->createTokens(TRUE, $mailaddress, $newinstname, 0, $newcountry); |
|
139 | + $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP FUTURE - Token created for " . implode(",", $mailaddress)); |
|
140 | + break; |
|
141 | + case OPERATION_MODE_NEWFROMDB: |
|
142 | + $redirect_destination = "../overview_federation.php?"; |
|
143 | + $mailaddress = abortOnBogusMail($newmailaddress, $redirect_destination); |
|
144 | + // a real external DB entry was submitted and all the required parameters are there |
|
145 | + $newexternalid = $validator->string($_POST['externals']); |
|
146 | + $extinfo = $catInstance->getExternalDBEntityDetails($newexternalid); |
|
147 | + $new_idp_authorized_fedadmin = $userObject->isFederationAdmin($extinfo['country']); |
|
148 | + if ($new_idp_authorized_fedadmin !== TRUE) { |
|
149 | + throw new Exception("Something's wrong... you want to create a new " . $uiElements->nomenclatureInst . ", but are not a " . $uiElements->nomenclatureFed . " admin for the " . $uiElements->nomenclatureFed . " it should be in!"); |
|
166 | 150 | } |
167 | - } |
|
168 | - // fill the rest of the text |
|
169 | - $introtext = "EXISTING-FED"; |
|
170 | - // do the token creation magic |
|
171 | - $newtokens = $mgmt->createTokens(TRUE, $mailaddress, $prettyprintname, $newexternalid); |
|
172 | - $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP FUTURE - Token created for " . implode(",", $mailaddress)); |
|
173 | - break; |
|
174 | - default: // includes OPERATION_MODE_INVALID |
|
175 | - $wrongcontent = print_r($_POST, TRUE); |
|
176 | - echo "<pre>Wrong parameters in POST: |
|
151 | + $federation = $validator->Federation($extinfo['country']); |
|
152 | + $newcountry = $extinfo['country']; |
|
153 | + // see if the inst name is defined in the currently set language; if not, pick its English name; if N/A, pick the last in the list |
|
154 | + $prettyprintname = ""; |
|
155 | + foreach ($extinfo['names'] as $lang => $name) { |
|
156 | + if ($lang == $languageInstance->getLang()) { |
|
157 | + $prettyprintname = $name; |
|
158 | + } |
|
159 | + } |
|
160 | + if ($prettyprintname == "" && isset($extinfo['names']['en'])) { |
|
161 | + $prettyprintname = $extinfo['names']['en']; |
|
162 | + } |
|
163 | + if ($prettyprintname == "") { |
|
164 | + foreach ($extinfo['names'] as $name) { |
|
165 | + $prettyprintname = $name; |
|
166 | + } |
|
167 | + } |
|
168 | + // fill the rest of the text |
|
169 | + $introtext = "EXISTING-FED"; |
|
170 | + // do the token creation magic |
|
171 | + $newtokens = $mgmt->createTokens(TRUE, $mailaddress, $prettyprintname, $newexternalid); |
|
172 | + $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP FUTURE - Token created for " . implode(",", $mailaddress)); |
|
173 | + break; |
|
174 | + default: // includes OPERATION_MODE_INVALID |
|
175 | + $wrongcontent = print_r($_POST, TRUE); |
|
176 | + echo "<pre>Wrong parameters in POST: |
|
177 | 177 | " . htmlspecialchars($wrongcontent) . " |
178 | 178 | </pre>"; |
179 | - exit(1); |
|
179 | + exit(1); |
|
180 | 180 | } |
181 | 181 | |
182 | 182 | // send, and invalidate the token immediately if the mail could not be sent! |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | * <base_url>/copyright.php after deploying the software |
20 | 20 | */ |
21 | 21 | |
22 | -require_once dirname(dirname(dirname(__DIR__))) . "/config/_config.php"; |
|
22 | +require_once dirname(dirname(dirname(__DIR__)))."/config/_config.php"; |
|
23 | 23 | |
24 | 24 | $auth = new \web\lib\admin\Authentication(); |
25 | 25 | $auth->authenticate(); |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | $addressSegments = explode(",", $newmailaddress); |
47 | 47 | $confirmedMails = []; |
48 | 48 | if ($addressSegments === FALSE) { |
49 | - header("Location: $redirect_destination" . "invitation=INVALIDSYNTAX"); |
|
49 | + header("Location: $redirect_destination"."invitation=INVALIDSYNTAX"); |
|
50 | 50 | exit; |
51 | 51 | } |
52 | 52 | foreach ($addressSegments as $oneAddressCandidate) { |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | } |
57 | 57 | } |
58 | 58 | if (count($confirmedMails) == 0) { |
59 | - header("Location: $redirect_destination" . "invitation=INVALIDSYNTAX"); |
|
59 | + header("Location: $redirect_destination"."invitation=INVALIDSYNTAX"); |
|
60 | 60 | exit; |
61 | 61 | } else { |
62 | 62 | return $confirmedMails; |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | $idp = $validator->IdP($_GET['inst_id']); |
104 | 104 | // editing IdPs is done from within the popup. When we're done, send the |
105 | 105 | // user back to the popup (append the result of the operation later) |
106 | - $redirect_destination = "manageAdmins.inc.php?inst_id=" . $idp->identifier . "&"; |
|
106 | + $redirect_destination = "manageAdmins.inc.php?inst_id=".$idp->identifier."&"; |
|
107 | 107 | $mailaddress = abortOnBogusMail($newmailaddress, $redirect_destination); |
108 | 108 | // is the user primary admin of this IdP? |
109 | 109 | $is_owner = $idp->isPrimaryOwner($_SESSION['user']); |
@@ -111,13 +111,13 @@ discard block |
||
111 | 111 | $fedadmin = $userObject->isFederationAdmin($idp->federation); |
112 | 112 | // check if he is either one, if not, complain |
113 | 113 | if (!$is_owner && !$fedadmin) { |
114 | - echo "<p>" . sprintf(_("Something's wrong... you are a %s admin, but not for the %s the requested %s belongs to!"), $uiElements->nomenclatureFed, $uiElements->nomenclatureFed, $uiElements->nomenclatureInst) . "</p>"; |
|
114 | + echo "<p>".sprintf(_("Something's wrong... you are a %s admin, but not for the %s the requested %s belongs to!"), $uiElements->nomenclatureFed, $uiElements->nomenclatureFed, $uiElements->nomenclatureInst)."</p>"; |
|
115 | 115 | exit(1); |
116 | 116 | } |
117 | 117 | |
118 | 118 | $prettyprintname = $idp->name; |
119 | 119 | $newtokens = $mgmt->createTokens($fedadmin, $mailaddress, $idp); |
120 | - $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP " . $idp->identifier . " - Token created for " . implode(",", $mailaddress)); |
|
120 | + $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP ".$idp->identifier." - Token created for ".implode(",", $mailaddress)); |
|
121 | 121 | $introtext = "CO-ADMIN"; |
122 | 122 | break; |
123 | 123 | case OPERATION_MODE_NEWUNLINKED: |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | $newcountry = $validator->string($_POST['country']); |
129 | 129 | $new_idp_authorized_fedadmin = $userObject->isFederationAdmin($newcountry); |
130 | 130 | if ($new_idp_authorized_fedadmin !== TRUE) { |
131 | - throw new Exception("Something's wrong... you want to create a new " . $uiElements->nomenclatureInst . ", but are not a " . $uiElements->nomenclatureFed . " admin for the " . $uiElements->nomenclatureFed . " it should be in!"); |
|
131 | + throw new Exception("Something's wrong... you want to create a new ".$uiElements->nomenclatureInst.", but are not a ".$uiElements->nomenclatureFed." admin for the ".$uiElements->nomenclatureFed." it should be in!"); |
|
132 | 132 | } |
133 | 133 | $federation = $validator->Federation($newcountry); |
134 | 134 | $prettyprintname = $newinstname; |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | // send the user back to his federation overview page, append the result of the operation later |
137 | 137 | // do the token creation magic |
138 | 138 | $newtokens = $mgmt->createTokens(TRUE, $mailaddress, $newinstname, 0, $newcountry); |
139 | - $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP FUTURE - Token created for " . implode(",", $mailaddress)); |
|
139 | + $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP FUTURE - Token created for ".implode(",", $mailaddress)); |
|
140 | 140 | break; |
141 | 141 | case OPERATION_MODE_NEWFROMDB: |
142 | 142 | $redirect_destination = "../overview_federation.php?"; |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | $extinfo = $catInstance->getExternalDBEntityDetails($newexternalid); |
147 | 147 | $new_idp_authorized_fedadmin = $userObject->isFederationAdmin($extinfo['country']); |
148 | 148 | if ($new_idp_authorized_fedadmin !== TRUE) { |
149 | - throw new Exception("Something's wrong... you want to create a new " . $uiElements->nomenclatureInst . ", but are not a " . $uiElements->nomenclatureFed . " admin for the " . $uiElements->nomenclatureFed . " it should be in!"); |
|
149 | + throw new Exception("Something's wrong... you want to create a new ".$uiElements->nomenclatureInst.", but are not a ".$uiElements->nomenclatureFed." admin for the ".$uiElements->nomenclatureFed." it should be in!"); |
|
150 | 150 | } |
151 | 151 | $federation = $validator->Federation($extinfo['country']); |
152 | 152 | $newcountry = $extinfo['country']; |
@@ -169,12 +169,12 @@ discard block |
||
169 | 169 | $introtext = "EXISTING-FED"; |
170 | 170 | // do the token creation magic |
171 | 171 | $newtokens = $mgmt->createTokens(TRUE, $mailaddress, $prettyprintname, $newexternalid); |
172 | - $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP FUTURE - Token created for " . implode(",", $mailaddress)); |
|
172 | + $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP FUTURE - Token created for ".implode(",", $mailaddress)); |
|
173 | 173 | break; |
174 | 174 | default: // includes OPERATION_MODE_INVALID |
175 | 175 | $wrongcontent = print_r($_POST, TRUE); |
176 | 176 | echo "<pre>Wrong parameters in POST: |
177 | -" . htmlspecialchars($wrongcontent) . " |
|
177 | +" . htmlspecialchars($wrongcontent)." |
|
178 | 178 | </pre>"; |
179 | 179 | exit(1); |
180 | 180 | } |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | $mgmt->invalidateToken($onetoken); |
191 | 191 | } else { |
192 | 192 | $status[$onetoken] = $sent["TRANSPORT"]; |
193 | - if (! $sent["TRANSPORT"]) { |
|
193 | + if (!$sent["TRANSPORT"]) { |
|
194 | 194 | $allEncrypted = FALSE; |
195 | 195 | } else { |
196 | 196 | $allClear = FALSE; |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | } |
200 | 200 | |
201 | 201 | if (count($status) == 0) { |
202 | - header("Location: $redirect_destination" . "invitation=FAILURE"); |
|
202 | + header("Location: $redirect_destination"."invitation=FAILURE"); |
|
203 | 203 | exit; |
204 | 204 | } |
205 | 205 | $finalDestParams = "invitation=SUCCESS"; |
@@ -215,4 +215,4 @@ discard block |
||
215 | 215 | $finalDestParams .= "&transportsecurity=PARTIAL"; |
216 | 216 | } |
217 | 217 | |
218 | -header("Location: $redirect_destination" . $finalDestParams); |
|
218 | +header("Location: $redirect_destination".$finalDestParams); |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | */ |
21 | 21 | ?> |
22 | 22 | <?php |
23 | -require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/config/_config.php"; |
|
23 | +require_once dirname(dirname(dirname(dirname(__FILE__))))."/config/_config.php"; |
|
24 | 24 | |
25 | 25 | $auth = new \web\lib\admin\Authentication(); |
26 | 26 | $auth->authenticate(); |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | |
36 | 36 | // if we have a pushed close button, submit attributes and send user back to the overview page |
37 | 37 | // if external DB sync is disabled globally, the user never gets to this page. If he came here *anyway* -> send him back immediately. |
38 | -if ((isset($_POST['submitbutton']) && $_POST['submitbutton'] == web\lib\common\FormElements::BUTTON_CLOSE ) || CONFIG['DB']['enforce-external-sync'] == FALSE) { |
|
38 | +if ((isset($_POST['submitbutton']) && $_POST['submitbutton'] == web\lib\common\FormElements::BUTTON_CLOSE) || CONFIG['DB']['enforce-external-sync'] == FALSE) { |
|
39 | 39 | header("Location: ../overview_federation.php"); |
40 | 40 | exit; |
41 | 41 | } |
@@ -92,9 +92,9 @@ discard block |
||
92 | 92 | $cat = new \core\CAT(); |
93 | 93 | switch ($my_inst->getExternalDBSyncState()) { |
94 | 94 | case \core\IdP::EXTERNAL_DB_SYNCSTATE_SYNCED: |
95 | - printf(_("This %s is linked to the %s database."), $uiElements->nomenclatureInst, CONFIG_CONFASSISTANT['CONSORTIUM']['display_name']) . "</p>"; |
|
96 | - echo "<p>" . sprintf(_("The following information about the IdP is stored in the %s DB and %s DB:"), CONFIG['APPEARANCE']['productname'], CONFIG_CONFASSISTANT['CONSORTIUM']['display_name']) . "</p>"; |
|
97 | - echo "<table><tr><td>" . sprintf(_("Information in <strong>%s Database</strong>"), CONFIG['APPEARANCE']['productname']) . "</td><td>" . sprintf(_("Information in <strong>%s Database</strong>"), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name']) . "</td></tr>"; |
|
95 | + printf(_("This %s is linked to the %s database."), $uiElements->nomenclatureInst, CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'])."</p>"; |
|
96 | + echo "<p>".sprintf(_("The following information about the IdP is stored in the %s DB and %s DB:"), CONFIG['APPEARANCE']['productname'], CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'])."</p>"; |
|
97 | + echo "<table><tr><td>".sprintf(_("Information in <strong>%s Database</strong>"), CONFIG['APPEARANCE']['productname'])."</td><td>".sprintf(_("Information in <strong>%s Database</strong>"), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'])."</td></tr>"; |
|
98 | 98 | echo "<tr><td>"; |
99 | 99 | // left-hand side: CAT DB |
100 | 100 | echo "<table>"; |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | } else { |
107 | 107 | $language = CONFIG['LANGUAGES'][$name['lang']]['display'] ?? "(unsupported language)"; |
108 | 108 | } |
109 | - echo "<tr><td>" . sprintf(_("%s Name (%s)"), $uiElements->nomenclatureInst, $language) . "</td><td>" . $name['value'] . "</td></tr>"; |
|
109 | + echo "<tr><td>".sprintf(_("%s Name (%s)"), $uiElements->nomenclatureInst, $language)."</td><td>".$name['value']."</td></tr>"; |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | $admins = $my_inst->listOwners(); |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | if (count($username) == 0) { |
118 | 118 | $username[0]['value'] = _("Unnamed User"); |
119 | 119 | } |
120 | - echo "<tr><td>" . _("Administrator [invited as]") . "</td><td>" . $username[0]['value'] . " [" . $admin['MAIL'] . "]</td></tr>"; |
|
120 | + echo "<tr><td>"._("Administrator [invited as]")."</td><td>".$username[0]['value']." [".$admin['MAIL']."]</td></tr>"; |
|
121 | 121 | } |
122 | 122 | echo "</table>"; |
123 | 123 | // end of left-hand side |
@@ -125,38 +125,38 @@ discard block |
||
125 | 125 | // right-hand side: external DB |
126 | 126 | $externalid = $my_inst->getExternalDBId(); |
127 | 127 | if (is_bool($externalid)) { // we are in SYNCED state so this cannot happen |
128 | - throw new Exception("We are in SYNCSTATE_SYNCED but still there is no external DB Id available for the " . CONFIG_CONFASSISTANT['CONSORTIUM']['nomenclature_institution'] . "!"); |
|
128 | + throw new Exception("We are in SYNCSTATE_SYNCED but still there is no external DB Id available for the ".CONFIG_CONFASSISTANT['CONSORTIUM']['nomenclature_institution']."!"); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | $extinfo = $cat->getExternalDBEntityDetails($externalid); |
132 | 132 | |
133 | 133 | echo "<table>"; |
134 | 134 | foreach ($extinfo['names'] as $lang => $name) { |
135 | - echo "<tr><td>" . sprintf(_("%s Name (%s)"), $uiElements->nomenclatureInst, $lang) . "</td><td>$name</td>"; |
|
135 | + echo "<tr><td>".sprintf(_("%s Name (%s)"), $uiElements->nomenclatureInst, $lang)."</td><td>$name</td>"; |
|
136 | 136 | } |
137 | 137 | foreach ($extinfo['admins'] as $number => $admin_details) { |
138 | - echo "<tr><td>" . _("Administrator email") . "</td><td>" . $admin_details['email'] . "</td></tr>"; |
|
138 | + echo "<tr><td>"._("Administrator email")."</td><td>".$admin_details['email']."</td></tr>"; |
|
139 | 139 | } |
140 | 140 | echo "</table>"; |
141 | 141 | // end of right-hand side |
142 | 142 | echo "</td></tr></table>"; |
143 | - echo "<p>" . _("If this mapping is not correct any more, you can remove the link:") . " "; |
|
143 | + echo "<p>"._("If this mapping is not correct any more, you can remove the link:")." "; |
|
144 | 144 | echo "<form name='form-unlink-inst' action='inc/manageDBLink.inc.php?inst_id=$my_inst->identifier' method='post' accept-charset='UTF-8'>"; |
145 | - echo "<button type='submit' class='delete' name='submitbutton' id='submit' value='" . web\lib\common\FormElements::BUTTON_DELETE . "'>" . _("Unlink") . "</button></form>"; |
|
145 | + echo "<button type='submit' class='delete' name='submitbutton' id='submit' value='".web\lib\common\FormElements::BUTTON_DELETE."'>"._("Unlink")."</button></form>"; |
|
146 | 146 | break; |
147 | 147 | case \core\IdP::EXTERNAL_DB_SYNCSTATE_NOT_SYNCED: |
148 | 148 | $temparray = []; |
149 | - printf(_("This %s is not yet linked to the %s database."), $uiElements->nomenclatureInst, CONFIG_CONFASSISTANT['CONSORTIUM']['display_name']) . " "; |
|
150 | - echo "<strong>" . _("This means that its profiles are not made available on the user download page.") . "</strong> "; |
|
149 | + printf(_("This %s is not yet linked to the %s database."), $uiElements->nomenclatureInst, CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'])." "; |
|
150 | + echo "<strong>"._("This means that its profiles are not made available on the user download page.")."</strong> "; |
|
151 | 151 | printf(_("You can link it to the %s database below."), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name']); |
152 | 152 | $candidates = $my_inst->getExternalDBSyncCandidates(); |
153 | 153 | echo "<br/><form name='form-link-inst' action='inc/manageDBLink.inc.php?inst_id=$my_inst->identifier' method='post' accept-charset='UTF-8'>"; |
154 | - printf(_("Please select an entity from the %s DB which corresponds to this CAT %s."), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'], $uiElements->nomenclatureInst) . " "; |
|
154 | + printf(_("Please select an entity from the %s DB which corresponds to this CAT %s."), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'], $uiElements->nomenclatureInst)." "; |
|
155 | 155 | if ($candidates !== FALSE && count($candidates) > 0) { |
156 | 156 | printf(_("Particularly promising entries (names in CAT and %s DB are a 100%% match) are on top of the list."), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name']); |
157 | 157 | } |
158 | 158 | echo "<table>"; |
159 | - echo "<tr><th>" . _("Link to this entity?") . "</th><th>" . sprintf(_("%s Name"), $uiElements->nomenclatureInst) . "</th><th>" . _("Administrators") . "</th></tr>"; |
|
159 | + echo "<tr><th>"._("Link to this entity?")."</th><th>".sprintf(_("%s Name"), $uiElements->nomenclatureInst)."</th><th>"._("Administrators")."</th></tr>"; |
|
160 | 160 | if ($candidates !== FALSE && count($candidates) > 0) { |
161 | 161 | foreach ($candidates as $candidate) { |
162 | 162 | $info = $cat->getExternalDBEntityDetails($candidate); |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | } |
167 | 167 | echo "</td><td>"; |
168 | 168 | foreach ($info['admins'] as $number => $admin_details) { |
169 | - echo "[E-Mail] " . $admin_details['email'] . "<br/>"; |
|
169 | + echo "[E-Mail] ".$admin_details['email']."<br/>"; |
|
170 | 170 | } |
171 | 171 | echo "</td></tr>"; |
172 | 172 | $temparray[] = $candidate; |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | $buffer = ""; |
180 | 180 | |
181 | 181 | foreach ($unmappedentities as $v) { |
182 | - $buffer .= "<option value='" . $v['ID'] . "'>[ID " . $v['ID'] . "] " . $v['name'] . "</option>"; |
|
182 | + $buffer .= "<option value='".$v['ID']."'>[ID ".$v['ID']."] ".$v['name']."</option>"; |
|
183 | 183 | } |
184 | 184 | |
185 | 185 | if ($buffer != "") { |
@@ -190,9 +190,9 @@ discard block |
||
190 | 190 | } |
191 | 191 | // issue a big red warning if there are no link candidates at all in the federation |
192 | 192 | if (empty($buffer) && empty($candidates)) { |
193 | - echo "<tr><td style='color:#ff0000' colspan='2'>" . sprintf(_('There is no single unmapped %s in the external database for this %s!'), $uiElements->nomenclatureInst, $uiElements->nomenclatureFed) . "</td></tr>"; |
|
193 | + echo "<tr><td style='color:#ff0000' colspan='2'>".sprintf(_('There is no single unmapped %s in the external database for this %s!'), $uiElements->nomenclatureInst, $uiElements->nomenclatureFed)."</td></tr>"; |
|
194 | 194 | } |
195 | - echo "</table><button type='submit' name='submitbutton' id='submit' value='" . web\lib\common\FormElements::BUTTON_SAVE . "' disabled >" . _("Create Link") . "</button></form>"; |
|
195 | + echo "</table><button type='submit' name='submitbutton' id='submit' value='".web\lib\common\FormElements::BUTTON_SAVE."' disabled >"._("Create Link")."</button></form>"; |
|
196 | 196 | break; |
197 | 197 | default: |
198 | 198 | } |
@@ -19,7 +19,7 @@ |
||
19 | 19 | * <base_url>/copyright.php after deploying the software |
20 | 20 | */ |
21 | 21 | |
22 | -require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/config/_config.php"; |
|
22 | +require_once dirname(dirname(dirname(dirname(__FILE__))))."/config/_config.php"; |
|
23 | 23 | ?> |
24 | 24 | |
25 | 25 | <!-- JQuery --> |
@@ -20,8 +20,8 @@ discard block |
||
20 | 20 | */ |
21 | 21 | ?> |
22 | 22 | <?php |
23 | -require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/config/_config.php"; |
|
24 | -require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/core/phpqrcode.php"; |
|
23 | +require_once dirname(dirname(dirname(dirname(__FILE__))))."/config/_config.php"; |
|
24 | +require_once dirname(dirname(dirname(dirname(__FILE__))))."/core/phpqrcode.php"; |
|
25 | 25 | |
26 | 26 | $auth = new \web\lib\admin\Authentication(); |
27 | 27 | $languageInstance = new \core\common\Language(); |
@@ -39,12 +39,12 @@ discard block |
||
39 | 39 | $invitationObject = new core\SilverbulletInvitation($validator->token(filter_input(INPUT_POST, 'token'))); |
40 | 40 | header("Content-Type:text/html;charset=utf-8"); |
41 | 41 | ?> |
42 | -<h1 style='text-align:center;'><?php echo _("Invitation Token QR Code");?></h1> |
|
42 | +<h1 style='text-align:center;'><?php echo _("Invitation Token QR Code"); ?></h1> |
|
43 | 43 | <img style='float:none' src='data:image/png;base64,<?php |
44 | 44 | // this cannot be NULL since $filename is FALSE; but make Scrutinizer happy. |
45 | 45 | $rawQr = \QRcode::png($invitationObject->link(), FALSE, QR_ECLEVEL_Q, 11); |
46 | 46 | if ($rawQr === NULL) { |
47 | 47 | throw new Exception("Something went seriously wrong during QR code generation!"); |
48 | 48 | } |
49 | -echo base64_encode($uiElements->pngInjectConsortiumLogo($rawQr, 11));?>'/> |
|
50 | -<p>(<a href='<?php echo $invitationObject->link();?>'><?php echo $invitationObject->link();?>)</a></p> |
|
49 | +echo base64_encode($uiElements->pngInjectConsortiumLogo($rawQr, 11)); ?>'/> |
|
50 | +<p>(<a href='<?php echo $invitationObject->link(); ?>'><?php echo $invitationObject->link(); ?>)</a></p> |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | * <base_url>/copyright.php after deploying the software |
20 | 20 | */ |
21 | 21 | |
22 | -require_once dirname(dirname(__DIR__)) . "/config/_config.php"; |
|
22 | +require_once dirname(dirname(__DIR__))."/config/_config.php"; |
|
23 | 23 | |
24 | 24 | $deco = new \web\lib\admin\PageDecoration(); |
25 | 25 | $validator = new \web\lib\common\InputValidation(); |
@@ -53,10 +53,10 @@ discard block |
||
53 | 53 | <?php |
54 | 54 | foreach ($preflist as $method) { |
55 | 55 | $escapedMethod = $method->getIntegerRep(); |
56 | - echo "<th style='min-width:200px'>" . $method->getPrintableRep() . "<br/> |
|
56 | + echo "<th style='min-width:200px'>".$method->getPrintableRep()."<br/> |
|
57 | 57 | <form method='post' action='inc/toggleRedirect.inc.php?inst_id=$my_inst->identifier&profile_id=$my_profile->identifier' onsubmit='popupRedirectWindow(this); return false;' accept-charset='UTF-8'> |
58 | 58 | <input type='hidden' name='eaptype' value='$escapedMethod'> |
59 | - <button class='redirect' type='submit'>" . _("EAP-Type-specific options...") . "</button> |
|
59 | + <button class='redirect' type='submit'>"._("EAP-Type-specific options...")."</button> |
|
60 | 60 | </form></th>"; |
61 | 61 | } |
62 | 62 | ?> |
@@ -72,10 +72,10 @@ discard block |
||
72 | 72 | foreach (\devices\Devices::listDevices() as $index => $description) { |
73 | 73 | |
74 | 74 | echo "<tr>"; |
75 | - echo "<td align='center'><img src='../resources/images/vendorlogo/" . $description['group'] . ".png' alt='logo'></td><td>" . $description['display'] . "<br/> |
|
75 | + echo "<td align='center'><img src='../resources/images/vendorlogo/".$description['group'].".png' alt='logo'></td><td>".$description['display']."<br/> |
|
76 | 76 | <form method='post' action='inc/toggleRedirect.inc.php?inst_id=$my_inst->identifier&profile_id=$my_profile->identifier' onsubmit='popupRedirectWindow(this); return false;' accept-charset='UTF-8'> |
77 | 77 | <input type='hidden' name='device' value='$index'> |
78 | - <button class='redirect' type='submit'>" . _("Device-specific options...") . "</button> |
|
78 | + <button class='redirect' type='submit'>"._("Device-specific options...")."</button> |
|
79 | 79 | </form> |
80 | 80 | </td>"; |
81 | 81 | $factory = new \core\DeviceFactory($index); |
@@ -84,10 +84,10 @@ discard block |
||
84 | 84 | $footnotesForDevEapCombo = []; |
85 | 85 | $display_footnote = FALSE; |
86 | 86 | $langObject = new \core\common\Language(); |
87 | - $downloadform = "<form action='" . rtrim(dirname(dirname($_SERVER['SCRIPT_NAME'])), '/') . "/user/API.php?action=downloadInstaller&profile=$my_profile->identifier&lang=" . $langObject->getLang() . "' method='post' accept-charset='UTF-8'> |
|
87 | + $downloadform = "<form action='".rtrim(dirname(dirname($_SERVER['SCRIPT_NAME'])), '/')."/user/API.php?action=downloadInstaller&profile=$my_profile->identifier&lang=".$langObject->getLang()."' method='post' accept-charset='UTF-8'> |
|
88 | 88 | <input type='hidden' name='device' value='$index'/> |
89 | 89 | <input type='hidden' name='generatedfor' value='admin'/> |
90 | - <button class='download'>" . _("Download") . "</button> |
|
90 | + <button class='download'>"._("Download")."</button> |
|
91 | 91 | "; |
92 | 92 | // first of all: if redirected, indicate by color |
93 | 93 | |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | </table> |
159 | 159 | <?php |
160 | 160 | if (count($distinctFootnotes)) { |
161 | - echo "<p><strong>" . _("Footnotes:") . "</strong></p><table>"; |
|
161 | + echo "<p><strong>"._("Footnotes:")."</strong></p><table>"; |
|
162 | 162 | foreach ($distinctFootnotes as $number => $text) { |
163 | 163 | echo "<tr><td>($number) - </td><td>$text</td></tr>"; |
164 | 164 | } |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | ?> |
28 | 28 | <?php |
29 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
29 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
30 | 30 | |
31 | 31 | $auth = new \web\lib\admin\Authentication(); |
32 | 32 | $deco = new \web\lib\admin\PageDecoration(); |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | ?> |
62 | 62 | </h1> |
63 | 63 | <div class='infobox'> |
64 | - <h2><?php echo sprintf(_("%s Properties"),$uiElements->nomenclatureFed); ?></h2> |
|
64 | + <h2><?php echo sprintf(_("%s Properties"), $uiElements->nomenclatureFed); ?></h2> |
|
65 | 65 | <table> |
66 | 66 | <tr> |
67 | 67 | <td><?php echo _("Country:"); ?></td> |
@@ -72,11 +72,11 @@ discard block |
||
72 | 72 | </table> |
73 | 73 | </div> |
74 | 74 | <?php |
75 | - echo "<form enctype='multipart/form-data' action='edit_federation_result.php?fed_id=$my_fed->tld" . "' method='post' accept-charset='UTF-8'> |
|
76 | - <input type='hidden' name='MAX_FILE_SIZE' value='" . CONFIG['MAX_UPLOAD_SIZE'] . "'>"; |
|
75 | + echo "<form enctype='multipart/form-data' action='edit_federation_result.php?fed_id=$my_fed->tld"."' method='post' accept-charset='UTF-8'> |
|
76 | + <input type='hidden' name='MAX_FILE_SIZE' value='" . CONFIG['MAX_UPLOAD_SIZE']."'>"; |
|
77 | 77 | ?> |
78 | 78 | <fieldset class="option_container"> |
79 | - <legend><strong><?php echo sprintf(_("%s Properties"),$uiElements->nomenclatureFed); ?></strong></legend> |
|
79 | + <legend><strong><?php echo sprintf(_("%s Properties"), $uiElements->nomenclatureFed); ?></strong></legend> |
|
80 | 80 | <?php |
81 | 81 | $optionDisplay = new \web\lib\admin\OptionDisplay($fed_options, "FED"); |
82 | 82 | echo $optionDisplay->prefilledOptionTable("fed"); |
@@ -84,5 +84,5 @@ discard block |
||
84 | 84 | <button type='button' class='newoption' onclick='getXML("fed")'><?php echo _("Add new option"); ?></button> |
85 | 85 | </fieldset> |
86 | 86 | <?php |
87 | - echo "<div><button type='submit' name='submitbutton' value='" . web\lib\common\FormElements::BUTTON_SAVE . "'>" . _("Save data") . "</button> <button type='button' class='delete' name='abortbutton' value='abort' onclick='javascript:window.location = \"overview_federation.php\"'>" . _("Discard changes") . "</button></div></form>"; |
|
87 | + echo "<div><button type='submit' name='submitbutton' value='".web\lib\common\FormElements::BUTTON_SAVE."'>"._("Save data")."</button> <button type='button' class='delete' name='abortbutton' value='abort' onclick='javascript:window.location = \"overview_federation.php\"'>"._("Discard changes")."</button></div></form>"; |
|
88 | 88 | echo $deco->footer(); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * @author Stefan Winter <[email protected]> |
26 | 26 | */ |
27 | 27 | |
28 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
28 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
29 | 29 | |
30 | 30 | $auth = new \web\lib\admin\Authentication(); |
31 | 31 | $deco = new \web\lib\admin\PageDecoration(); |
@@ -40,18 +40,18 @@ discard block |
||
40 | 40 | $my_fed = $validator->Federation($_GET['fed_id'], $_SESSION['user']); |
41 | 41 | if (isset($_POST['submitbutton']) && $_POST['submitbutton'] == web\lib\common\FormElements::BUTTON_SAVE) { // here we go |
42 | 42 | $fed_name = $my_fed->name; |
43 | - echo "<h1>" . sprintf(_("Submitted attributes for %s '%s'"), $uiElements->nomenclatureFed, $fed_name) . "</h1>"; |
|
43 | + echo "<h1>".sprintf(_("Submitted attributes for %s '%s'"), $uiElements->nomenclatureFed, $fed_name)."</h1>"; |
|
44 | 44 | echo "<table>"; |
45 | 45 | echo $optionParser->processSubmittedFields($my_fed, $_POST, $_FILES); |
46 | 46 | echo "</table>"; |
47 | 47 | |
48 | 48 | $loggerInstance = new \core\common\Logging(); |
49 | - $loggerInstance->writeAudit($_SESSION['user'], "MOD", "FED " . $my_fed->name . " - attributes changed"); |
|
49 | + $loggerInstance->writeAudit($_SESSION['user'], "MOD", "FED ".$my_fed->name." - attributes changed"); |
|
50 | 50 | |
51 | 51 | // re-instantiate ourselves... profiles need fresh data |
52 | 52 | |
53 | 53 | $my_fed = $validator->Federation($_GET['fed_id'], $_SESSION['user']); |
54 | 54 | |
55 | - echo "<br/><form method='post' action='overview_federation.php' accept-charset='UTF-8'><button type='submit'>" . _("Continue to dashboard") . "</button></form>"; |
|
55 | + echo "<br/><form method='post' action='overview_federation.php' accept-charset='UTF-8'><button type='submit'>"._("Continue to dashboard")."</button></form>"; |
|
56 | 56 | } |
57 | 57 | echo $deco->footer(); |