@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | |
22 | 22 | namespace web\lib\admin; |
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 | * This class provides map display functionality |
@@ -121,19 +121,19 @@ discard block |
||
121 | 121 | protected function htmlPreEdit($wizardMode, $additional) { |
122 | 122 | \core\common\Entity::intoThePotatoes(); |
123 | 123 | $retval = "<fieldset class='option_container'> |
124 | - <legend><strong>" . _("Location") . "</strong></legend>"; |
|
124 | + <legend><strong>" . _("Location")."</strong></legend>"; |
|
125 | 125 | |
126 | 126 | if ($wizardMode) { |
127 | - $retval .= "<p>" . |
|
128 | - _("The user download interface (see <a href='../'>here</a>), uses geolocation to suggest possibly matching IdPs to the user. The more precise you define the location here, the easier your users will find you.") . |
|
127 | + $retval .= "<p>". |
|
128 | + _("The user download interface (see <a href='../'>here</a>), uses geolocation to suggest possibly matching IdPs to the user. The more precise you define the location here, the easier your users will find you."). |
|
129 | 129 | "</p> |
130 | 130 | <ul>" . |
131 | 131 | _("<li>Drag the marker in the map to your place, or</li> |
132 | 132 | <li>enter your street address in the field below for lookup, or</li> |
133 | -<li>use the 'Locate Me!' button</li>") . |
|
133 | +<li>use the 'Locate Me!' button</li>"). |
|
134 | 134 | "</ul> |
135 | 135 | <strong>" . |
136 | - _("We will use the coordinates as indicated by the marker for geolocation.") . |
|
136 | + _("We will use the coordinates as indicated by the marker for geolocation."). |
|
137 | 137 | "</strong>"; |
138 | 138 | } |
139 | 139 | if ($additional) { |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | */ |
152 | 152 | protected function htmlPostEdit($allowDirectInput) { |
153 | 153 | \core\common\Entity::intoThePotatoes(); |
154 | - $retval = "<br/>" . _("Latitude:") . " <input style='width:80px' name='geo_lat' id='geo_lat' " .($allowDirectInput ? "": "readonly"). ">" . _("Longitude:") . " <input name='geo_long' id='geo_long' style='width:80px' " .($allowDirectInput ? "": "readonly"). "></fieldset>"; |
|
154 | + $retval = "<br/>"._("Latitude:")." <input style='width:80px' name='geo_lat' id='geo_lat' ".($allowDirectInput ? "" : "readonly").">"._("Longitude:")." <input name='geo_long' id='geo_long' style='width:80px' ".($allowDirectInput ? "" : "readonly")."></fieldset>"; |
|
155 | 155 | \core\common\Entity::outOfThePotatoes(); |
156 | 156 | return $retval; |
157 | 157 | } |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | private function inputValidationError($customtext) { |
39 | 39 | \core\common\Entity::intoThePotatoes(); |
40 | - $retval = "<p>" . _("Input validation error: ") . $customtext . "</p>"; |
|
40 | + $retval = "<p>"._("Input validation error: ").$customtext."</p>"; |
|
41 | 41 | \core\common\Entity::outOfThePotatoes(); |
42 | 42 | return $retval; |
43 | 43 | } |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | */ |
173 | 173 | public function string($input, $allowWhitespace = FALSE) { |
174 | 174 | // always chop out invalid characters, and surrounding whitespace |
175 | - $retvalStep0 = iconv("UTF-8", "UTF-8//TRANSLIT", $input); |
|
175 | + $retvalStep0 = iconv("UTF-8", "UTF-8//TRANSLIT", $input); |
|
176 | 176 | if ($retvalStep0 === FALSE) { |
177 | 177 | throw new Exception("iconv failure for string sanitisation. With TRANSLIT, this should never happen!"); |
178 | 178 | } |
@@ -411,7 +411,7 @@ discard block |
||
411 | 411 | */ |
412 | 412 | public function hostname($input) { |
413 | 413 | // is it a valid IP address (IPv4 or IPv6), or a hostname? |
414 | - if (filter_var($input, FILTER_VALIDATE_IP) || $this->email("stefan@" . $input) !== FALSE) { |
|
414 | + if (filter_var($input, FILTER_VALIDATE_IP) || $this->email("stefan@".$input) !== FALSE) { |
|
415 | 415 | // if it's a verified IP address or hostname then it does not contain |
416 | 416 | // rubbish of course. But just to be sure, run htmlspecialchars around it |
417 | 417 | return htmlspecialchars($input, ENT_QUOTES); |
@@ -489,7 +489,7 @@ discard block |
||
489 | 489 | try { |
490 | 490 | $image->readImageBlob($binary); |
491 | 491 | } catch (\ImagickException $exception) { |
492 | - echo "Error" . $exception->getMessage(); |
|
492 | + echo "Error".$exception->getMessage(); |
|
493 | 493 | return FALSE; |
494 | 494 | } |
495 | 495 | // image survived the sanity check |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | * @author Stefan Winter <[email protected]> |
27 | 27 | * @package Core |
28 | 28 | */ |
29 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
29 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
30 | 30 | |
31 | 31 | $cleanToken = FALSE; |
32 | 32 | $invitationObject = new core\SilverbulletInvitation("INVALID"); |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | |
74 | 74 | $statusInfo = ["token" => $cleanToken, |
75 | 75 | "invitation_object" => $invitationObject, |
76 | - "OS" => $Gui->operatingSystem,]; |
|
76 | + "OS" => $Gui->operatingSystem, ]; |
|
77 | 77 | |
78 | 78 | if ($profile !== NULL) { |
79 | 79 | $attributes = $Gui->profileAttributes($profile->identifier); |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | $caAndSerial = filter_input(INPUT_GET, 'serial', FILTER_SANITIZE_STRING); |
87 | 87 | |
88 | 88 | if ($action !== NULL && $action !== FALSE && $action === \web\lib\common\FormElements::BUTTON_DELETE && $caAndSerial !== NULL && $caAndSerial !== FALSE) { |
89 | - $tuple = explode(':',$caAndSerial); |
|
89 | + $tuple = explode(':', $caAndSerial); |
|
90 | 90 | $ca_type = $tuple[0]; |
91 | 91 | $serial = $tuple[1]; |
92 | 92 | if ($statusInfo['invitation_object']->invitationTokenStatus != \core\SilverbulletInvitation::SB_TOKENSTATUS_INVALID) { |
@@ -101,12 +101,12 @@ discard block |
||
101 | 101 | print "//REVOKING\n"; |
102 | 102 | $certObject = new \core\SilverbulletCertificate($serial, $ca_type); |
103 | 103 | $certObject->revokeCertificate(); |
104 | - header("Location: accountstatus.php?token=" . $statusInfo['token']); |
|
104 | + header("Location: accountstatus.php?token=".$statusInfo['token']); |
|
105 | 105 | exit; |
106 | 106 | } |
107 | 107 | } |
108 | 108 | } |
109 | - header("Location: accountstatus.php?token=" . $statusInfo['token']); |
|
109 | + header("Location: accountstatus.php?token=".$statusInfo['token']); |
|
110 | 110 | exit; |
111 | 111 | } |
112 | 112 | |
@@ -131,4 +131,4 @@ discard block |
||
131 | 131 | $skinObject = new \web\lib\user\Skinjob($_REQUEST['skin'] ?? $_SESSION['skin'] ?? $fedskin[0] ?? CONFIG['APPEARANCE']['skins'][0]); |
132 | 132 | |
133 | 133 | // and now, serve actual data |
134 | -require "../skins/" . $skinObject->skin . "/accountstatus/accountstatus.php"; |
|
134 | +require "../skins/".$skinObject->skin."/accountstatus/accountstatus.php"; |
@@ -25,7 +25,7 @@ |
||
25 | 25 | * @author Stefan Winter <[email protected]> |
26 | 26 | * @package Core |
27 | 27 | */ |
28 | -require_once dirname(dirname(__FILE__)) . "/config/_config.php"; |
|
28 | +require_once dirname(dirname(__FILE__))."/config/_config.php"; |
|
29 | 29 | |
30 | 30 | $Gui = new \web\lib\user\Gui(); |
31 | 31 | // ... unless overwritten by direct GET/POST parameter in the request or a SESSION setting |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | otherdata = j.otherdata; |
88 | 88 | if(! result) { |
89 | 89 | alert("<?php escaped_echo(_("no matching data found"))?>"); |
90 | - document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/') . '/' ?>'; |
|
90 | + document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/').'/' ?>'; |
|
91 | 91 | } |
92 | 92 | j = j.data; |
93 | 93 | n = j.length; |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | result = j1.status; |
225 | 225 | if(! result) { |
226 | 226 | alert("<?php escaped_echo(_("no matching data found")) ?>"); |
227 | - document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/') . '/' ?>'; |
|
227 | + document.location.href='<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/').'/' ?>'; |
|
228 | 228 | } |
229 | 229 | j = j1.data; |
230 | 230 | if(j.description !== undefined && j.description) { |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | * the receiving end to strip this marker and not add the title by itself. |
31 | 31 | * |
32 | 32 | */ |
33 | -require_once dirname(dirname(dirname((dirname(dirname(__FILE__)))))) . "/config/_config.php"; |
|
33 | +require_once dirname(dirname(dirname((dirname(dirname(__FILE__))))))."/config/_config.php"; |
|
34 | 34 | |
35 | 35 | $Gui = new \web\lib\user\Gui(); |
36 | 36 | |
@@ -40,46 +40,46 @@ discard block |
||
40 | 40 | $subpage = $_REQUEST['subpage']; |
41 | 41 | switch ($page) { |
42 | 42 | case 'about' : |
43 | - require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/user/about_cat.inc.php"; |
|
43 | + require_once dirname(dirname(dirname(dirname(__FILE__))))."/user/about_cat.inc.php"; |
|
44 | 44 | $out = "<div class='padding'>$out</div>"; |
45 | 45 | break; |
46 | 46 | case 'tou': |
47 | - require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/user/tou.inc.php"; |
|
47 | + require_once dirname(dirname(dirname(dirname(__FILE__))))."/user/tou.inc.php"; |
|
48 | 48 | $out = "no_title<div> |
49 | 49 | <h1> |
50 | - " . $Tou['title'] . " |
|
50 | + " . $Tou['title']." |
|
51 | 51 | </h1> |
52 | -<div id='tou_1'>" . $Tou['subtitle'] . |
|
53 | -$Tou['short'] . " |
|
52 | +<div id='tou_1'>" . $Tou['subtitle']. |
|
53 | +$Tou['short']." |
|
54 | 54 | </div> |
55 | 55 | <div id='all_tou_link'><a href='javascript:showTOU()'>Click here to see the full terms</a></div> |
56 | 56 | <div id='tou_2' style='display:none; padding-top:20px'>" . |
57 | -$Tou['full'] . " |
|
57 | +$Tou['full']." |
|
58 | 58 | </div> |
59 | 59 | </div> |
60 | 60 | "; |
61 | 61 | break; |
62 | 62 | case 'help': |
63 | - require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/user/faq.inc.php"; |
|
63 | + require_once dirname(dirname(dirname(dirname(__FILE__))))."/user/faq.inc.php"; |
|
64 | 64 | switch ($subpage) { |
65 | 65 | case 'contact' : |
66 | 66 | case 'idp_not_listed' : |
67 | 67 | case 'device_not_listed' : |
68 | 68 | case 'what_is_eduroam' : |
69 | - $out = "no_title<div><h1>" . _("Help") . "</h1>"; |
|
69 | + $out = "no_title<div><h1>"._("Help")."</h1>"; |
|
70 | 70 | foreach ($Faq as $faqItem) { |
71 | 71 | if (!empty($faqItem['id']) && $faqItem['id'] == $subpage) { |
72 | - $out .= "<div><h3>" . $faqItem['title'] . "</h3>\n"; |
|
73 | - $out .= "" . $faqItem['text'] . "</div>\n"; |
|
72 | + $out .= "<div><h3>".$faqItem['title']."</h3>\n"; |
|
73 | + $out .= "".$faqItem['text']."</div>\n"; |
|
74 | 74 | } |
75 | 75 | } |
76 | 76 | $out .= "</div>"; |
77 | 77 | break; |
78 | 78 | case 'faq': |
79 | - $out = "no_title<div><h1>" . _("Frequently Asked Questions") . "</h1>"; |
|
79 | + $out = "no_title<div><h1>"._("Frequently Asked Questions")."</h1>"; |
|
80 | 80 | foreach ($Faq as $faqItem) { |
81 | - $out .= "<div><h3>" . $faqItem['title'] . "</h3>\n"; |
|
82 | - $out .= "" . $faqItem['text'] . "</div>\n"; |
|
81 | + $out .= "<div><h3>".$faqItem['title']."</h3>\n"; |
|
82 | + $out .= "".$faqItem['text']."</div>\n"; |
|
83 | 83 | } |
84 | 84 | $out .= "</div>"; |
85 | 85 | break; |
@@ -103,15 +103,15 @@ discard block |
||
103 | 103 | $rn = uniqid(); |
104 | 104 | $_SESSION['remindIdP'] = $rn; |
105 | 105 | $out .= "<input type='hidden' id='remindIdPs' value='$rn'>"; |
106 | - $out .= "<p><button type='button' onclick='goAdmin(); return(false);'>" . _("Login") . "</button>"; |
|
107 | - $out .= "<br/><br/><p>" . _("Did you forget with which Identity Provider you logged in to the system? We can try to find out if you specify the email address with which you were invited to the system in the box below. This may not work if you were invited from a third-party website via the AdminAPI.") . "</p>"; |
|
108 | - $out .= "<input id='remindIdP' type='text'/><button onclick='remindIdPF(); return false;'>" . _("Get IdP Reminder") . "</button>"; |
|
106 | + $out .= "<p><button type='button' onclick='goAdmin(); return(false);'>"._("Login")."</button>"; |
|
107 | + $out .= "<br/><br/><p>"._("Did you forget with which Identity Provider you logged in to the system? We can try to find out if you specify the email address with which you were invited to the system in the box below. This may not work if you were invited from a third-party website via the AdminAPI.")."</p>"; |
|
108 | + $out .= "<input id='remindIdP' type='text'/><button onclick='remindIdPF(); return false;'>"._("Get IdP Reminder")."</button>"; |
|
109 | 109 | $out .= "<div id='remindIdPd'><span id='remindIdPh'></span><ul id='remindIdPl'></ul></div>"; |
110 | 110 | $out = "<div class='padding'>$out</div>"; |
111 | 111 | } |
112 | 112 | break; |
113 | 113 | case 'develop' : |
114 | - require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/user/devel.inc.php"; |
|
114 | + require_once dirname(dirname(dirname(dirname(__FILE__))))."/user/devel.inc.php"; |
|
115 | 115 | $out = "<div class='padding'>$out</div>"; |
116 | 116 | break; |
117 | 117 | } |
@@ -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(dirname(__FILE__)))) . "/config/_config.php"; |
|
22 | +require_once dirname(dirname(dirname(dirname(__FILE__))))."/config/_config.php"; |
|
23 | 23 | |
24 | 24 | /** |
25 | 25 | * Menu class helps to define the menu on the main page |
@@ -39,9 +39,9 @@ discard block |
||
39 | 39 | $langsArray = []; |
40 | 40 | foreach (CONFIG['LANGUAGES'] as $lang => $value) { |
41 | 41 | if ($lang == $selectedLang) { |
42 | - $langsArray[] = ['text'=>$value['display'], 'link'=>'javascript:changeLang("' . $lang . '")', 'class'=>'selected-lang']; |
|
42 | + $langsArray[] = ['text'=>$value['display'], 'link'=>'javascript:changeLang("'.$lang.'")', 'class'=>'selected-lang']; |
|
43 | 43 | } else { |
44 | - $langsArray[] = ['text'=>$value['display'], 'link'=>'javascript:changeLang("' . $lang . '")']; |
|
44 | + $langsArray[] = ['text'=>$value['display'], 'link'=>'javascript:changeLang("'.$lang.'")']; |
|
45 | 45 | } |
46 | 46 | } |
47 | 47 | $this->menu = [['id' => 'start', |
@@ -92,13 +92,13 @@ discard block |
||
92 | 92 | $iD = $menuItem['id'] ?? $id; |
93 | 93 | $catInfo = NULL; |
94 | 94 | if (!empty($menuItem['catInfo'])) { |
95 | - $catInfo = 'javascript:infoCAT("' . $iD . '", "' . $menuItem['catInfo'][0] . '","' . $menuItem['catInfo'][1] . '")'; |
|
95 | + $catInfo = 'javascript:infoCAT("'.$iD.'", "'.$menuItem['catInfo'][0].'","'.$menuItem['catInfo'][1].'")'; |
|
96 | 96 | } |
97 | 97 | if (!empty($menuItem['link']) && substr($menuItem['link'], 0, 1) === '/') { |
98 | - $menuItem['link'] = \core\CAT::getRootUrlPath() . $menuItem['link']; |
|
98 | + $menuItem['link'] = \core\CAT::getRootUrlPath().$menuItem['link']; |
|
99 | 99 | } |
100 | 100 | $link = $catInfo ?? $menuItem['link'] ?? ''; |
101 | - $class = empty($menuItem['class']) ? '' : ' class="' . $menuItem['class'] . '"'; |
|
101 | + $class = empty($menuItem['class']) ? '' : ' class="'.$menuItem['class'].'"'; |
|
102 | 102 | $submenu = $menuItem['submenu'] ?? []; |
103 | 103 | $out .= $this->printMenuItem($menuItem['text'], $link, $class); |
104 | 104 | $out .= $this->printMenu($submenu, $iD); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | if ($itemLink === '') { |
115 | 115 | return("<li><span>$itemText</span>"); |
116 | 116 | } |
117 | - return "<li><a href='" . $itemLink . "'" . $itemClass . '>' . $itemText . "</a>"; |
|
117 | + return "<li><a href='".$itemLink."'".$itemClass.'>'.$itemText."</a>"; |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | public function printMinimalMenu() { |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | <span>Configuration Assistant Tool</span> |
53 | 53 | </div>"; |
54 | 54 | } |
55 | - $retval .= "<div id='motd'>" . (isset(CONFIG['APPEARANCE']['MOTD']) ? CONFIG['APPEARANCE']['MOTD'] : ' ') . "</div>"; |
|
55 | + $retval .= "<div id='motd'>".(isset(CONFIG['APPEARANCE']['MOTD']) ? CONFIG['APPEARANCE']['MOTD'] : ' ')."</div>"; |
|
56 | 56 | $loc2 = $this->Gui->skinObject->findResourceUrl("IMAGES", "icons/menu.png"); |
57 | 57 | if ($loc2 !== FALSE) { |
58 | 58 | $retval .= "<img id='hamburger' src='$loc2' alt='Menu'/>"; |
@@ -70,13 +70,13 @@ discard block |
||
70 | 70 | public function div_user_welcome() { |
71 | 71 | $retval = " |
72 | 72 | <div id='user_welcome'> <!-- this information is shown just before the download --> |
73 | - <strong>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_PAGEHEADING] . "</strong> |
|
73 | + <strong>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_PAGEHEADING]."</strong> |
|
74 | 74 | <p> |
75 | 75 | <span id='download_info'> |
76 | 76 | <!-- the empty href is dynamically exchanged with the actual path by jQuery at runtime --> |
77 | - " . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_DOWNLOAD] . " |
|
77 | + " . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_DOWNLOAD]." |
|
78 | 78 | </span> |
79 | - <p>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_HEADING] . " |
|
79 | + <p>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_HEADING]." |
|
80 | 80 | <br/> |
81 | 81 | <br/>"; |
82 | 82 | switch (CONFIG_CONFASSISTANT['CONSORTIUM']['name']) { |
@@ -86,11 +86,11 @@ discard block |
||
86 | 86 | } |
87 | 87 | $retval .= " |
88 | 88 | </p> |
89 | - <p>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_USAGE] . " |
|
90 | - <p>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_PROBLEMS] . " |
|
89 | + <p>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_USAGE]." |
|
90 | + <p>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_PROBLEMS]." |
|
91 | 91 | </p> |
92 | 92 | <p> |
93 | - <a href='javascript:back_to_downloads()'><strong>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_BACKTODOWNLOADS] . "</strong></a> |
|
93 | + <a href='javascript:back_to_downloads()'><strong>" . $this->Gui->textTemplates->templates[user\WELCOME_ABOARD_BACKTODOWNLOADS]."</strong></a> |
|
94 | 94 | </p> |
95 | 95 | </div> <!-- id='user_welcomer_page' --> |
96 | 96 | "; |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | public function div_silverbullet() { |
101 | 101 | $retval = " |
102 | 102 | <div id='silverbullet'>" |
103 | - . $this->Gui->textTemplates->templates[user\SB_GO_AWAY] . |
|
103 | + . $this->Gui->textTemplates->templates[user\SB_GO_AWAY]. |
|
104 | 104 | "</div> |
105 | 105 | "; |
106 | 106 | return $retval; |
@@ -109,10 +109,10 @@ discard block |
||
109 | 109 | public function div_top_welcome() { |
110 | 110 | return " |
111 | 111 | <div id='welcome_top1'> |
112 | - " . $this->Gui->textTemplates->templates[user\HEADING_TOPLEVEL_GREET] . " |
|
112 | + " . $this->Gui->textTemplates->templates[user\HEADING_TOPLEVEL_GREET]." |
|
113 | 113 | </div> |
114 | 114 | <div id='top_invite'> |
115 | - " . $this->Gui->textTemplates->templates[user\HEADING_TOPLEVEL_PURPOSE] . " |
|
115 | + " . $this->Gui->textTemplates->templates[user\HEADING_TOPLEVEL_PURPOSE]." |
|
116 | 116 | </div>"; |
117 | 117 | } |
118 | 118 | |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | $retval = " |
121 | 121 | <div id='roller'> |
122 | 122 | <div id='slides'> |
123 | - <span id='line1'>" . $this->Gui->textTemplates->templates[user\FRONTPAGE_ROLLER_EASY] . "</span> |
|
123 | + <span id='line1'>" . $this->Gui->textTemplates->templates[user\FRONTPAGE_ROLLER_EASY]."</span> |
|
124 | 124 | <span id='line2'></span> |
125 | 125 | <span id='line3'></span> |
126 | 126 | <span id='line4'>"; |
@@ -173,9 +173,9 @@ discard block |
||
173 | 173 | public function div_profiles() { |
174 | 174 | return " |
175 | 175 | <div id='profiles'> <!-- this is the profile selection filled during run time --> |
176 | - <div id='profiles_h' class='sub_h'>" . $this->Gui->textTemplates->templates[user\PROFILE_SELECTION] . " |
|
176 | + <div id='profiles_h' class='sub_h'>" . $this->Gui->textTemplates->templates[user\PROFILE_SELECTION]." |
|
177 | 177 | </div>" . |
178 | -"<select id='profile_list'></select><div id='profile_desc' class='profile_desc'></div>" . |
|
178 | +"<select id='profile_list'></select><div id='profile_desc' class='profile_desc'></div>". |
|
179 | 179 | "</div>"; |
180 | 180 | } |
181 | 181 | |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | public function div_institution($selectButton = TRUE) { |
191 | 191 | $retval = "<div id='institution_name'> |
192 | 192 | <span id='inst_name_span'></span> <div id='inst_extra_text'></div><!-- this will be filled with the IdP name -->" . |
193 | - ($selectButton ? "<a id='select_another' class='signin' href=\"\">" . $this->Gui->textTemplates->templates[user\INSTITUTION_SELECTION] . "</a>" : "") . |
|
193 | + ($selectButton ? "<a id='select_another' class='signin' href=\"\">".$this->Gui->textTemplates->templates[user\INSTITUTION_SELECTION]."</a>" : ""). |
|
194 | 194 | "</div>"; |
195 | 195 | $retval .= $this->emptyImage('idp_logo', 'IdP Logo'); |
196 | 196 | return $retval; |
@@ -204,7 +204,7 @@ discard block |
||
204 | 204 | public function div_otherinstallers() { |
205 | 205 | $retval = " |
206 | 206 | <div class='sub_h'> |
207 | - <div id='other_installers'>" . $this->Gui->textTemplates->templates[user\DOWNLOAD_CHOOSE] . " |
|
207 | + <div id='other_installers'>" . $this->Gui->textTemplates->templates[user\DOWNLOAD_CHOOSE]." |
|
208 | 208 | <table id='device_list' style='padding:0px;'>"; |
209 | 209 | |
210 | 210 | foreach ($this->Gui->listDevices(isset($_REQUEST['hidden']) ? $_REQUEST['hidden'] : 0) as $group => $deviceGroup) { |
@@ -212,18 +212,18 @@ discard block |
||
212 | 212 | $deviceIndex = 0; |
213 | 213 | |
214 | 214 | $imgTag = ""; |
215 | - $imgLocation = $this->Gui->skinObject->findResourceUrl("IMAGES", "vendorlogo/" . $group . ".png"); |
|
215 | + $imgLocation = $this->Gui->skinObject->findResourceUrl("IMAGES", "vendorlogo/".$group.".png"); |
|
216 | 216 | if ($imgLocation !== FALSE) { |
217 | - $imgTag = '<img src="' . $imgLocation . '" alt="' . $group . ' Device" title="' . $group . ' Device">'; |
|
217 | + $imgTag = '<img src="'.$imgLocation.'" alt="'.$group.' Device" title="'.$group.' Device">'; |
|
218 | 218 | } |
219 | - $retval .= '<tbody><tr><td class="vendor" rowspan="' . $groupIndex . '">' . $imgTag . '</td>'; |
|
219 | + $retval .= '<tbody><tr><td class="vendor" rowspan="'.$groupIndex.'">'.$imgTag.'</td>'; |
|
220 | 220 | foreach ($deviceGroup as $d => $D) { |
221 | 221 | if ($deviceIndex) { |
222 | 222 | $retval .= '<tr>'; |
223 | 223 | } |
224 | - $retval .= "<td><button id='" . $d . "'>" . $D['display'] . "</button>" |
|
225 | - . "<div class='device_info' id='info_" . $d . "'></div></td>" |
|
226 | - . "<td><button class='more_info_b' id='info_b_" . $d . "'>i</button></td></tr>\n"; |
|
224 | + $retval .= "<td><button id='".$d."'>".$D['display']."</button>" |
|
225 | + . "<div class='device_info' id='info_".$d."'></div></td>" |
|
226 | + . "<td><button class='more_info_b' id='info_b_".$d."'>i</button></td></tr>\n"; |
|
227 | 227 | $deviceIndex++; |
228 | 228 | } |
229 | 229 | $retval .= "</tbody>"; |
@@ -237,15 +237,15 @@ discard block |
||
237 | 237 | } |
238 | 238 | |
239 | 239 | public function div_guess_os($operatingSystem) { |
240 | - $vendorlogo = $this->Gui->skinObject->findResourceUrl("IMAGES", "vendorlogo/" . $operatingSystem['group'] . ".png"); |
|
240 | + $vendorlogo = $this->Gui->skinObject->findResourceUrl("IMAGES", "vendorlogo/".$operatingSystem['group'].".png"); |
|
241 | 241 | $vendorstyle = ""; |
242 | 242 | if ($vendorlogo !== FALSE) { |
243 | - $vendorstyle = "style='background-image:url(\"" . $vendorlogo . "\")'"; |
|
243 | + $vendorstyle = "style='background-image:url(\"".$vendorlogo."\")'"; |
|
244 | 244 | } |
245 | 245 | $deleteIcon = $this->Gui->skinObject->findResourceUrl("IMAGES", "icons/delete_32.png"); |
246 | 246 | $deleteImg = ""; |
247 | 247 | if ($deleteIcon !== FALSE) { |
248 | - $deleteImg = "<img id='cross_icon_" . $operatingSystem['device'] . "' src='$deleteIcon' >"; |
|
248 | + $deleteImg = "<img id='cross_icon_".$operatingSystem['device']."' src='$deleteIcon' >"; |
|
249 | 249 | } |
250 | 250 | return " |
251 | 251 | <div class='sub_h' id='guess_os'> |
@@ -253,23 +253,23 @@ discard block |
||
253 | 253 | <table id='browser'> |
254 | 254 | <tr> |
255 | 255 | <td> |
256 | - <button class='large_button guess_os' $vendorstyle id='g_" . $operatingSystem['device'] . "'> |
|
256 | + <button class='large_button guess_os' $vendorstyle id='g_".$operatingSystem['device']."'> |
|
257 | 257 | $deleteImg |
258 | - <div class='download_button_text_1' id='download_button_header_" . $operatingSystem['device'] . "'> " . $this->Gui->textTemplates->templates[user\DOWNLOAD_MESSAGE] . " |
|
258 | + <div class='download_button_text_1' id='download_button_header_".$operatingSystem['device']."'> ".$this->Gui->textTemplates->templates[user\DOWNLOAD_MESSAGE]." |
|
259 | 259 | </div> |
260 | 260 | <div class='download_button_text'>" . |
261 | - $operatingSystem['display'] . " |
|
261 | + $operatingSystem['display']." |
|
262 | 262 | </div> |
263 | 263 | </button> |
264 | - <div class='device_info' id='info_g_" . $operatingSystem['device'] . "'></div> |
|
264 | + <div class='device_info' id='info_g_" . $operatingSystem['device']."'></div> |
|
265 | 265 | </td> |
266 | 266 | <td style='vertical-align:top'> |
267 | - <button class='more_info_b large_button' id='g_info_b_" . $operatingSystem['device'] . "'>i</button> |
|
267 | + <button class='more_info_b large_button' id='g_info_b_" . $operatingSystem['device']."'>i</button> |
|
268 | 268 | </td> |
269 | 269 | </tr> |
270 | 270 | </table> <!-- id='browser' --> |
271 | 271 | <div class='sub_h'> |
272 | - <a href='javascript:other_installers()'>" . $this->Gui->textTemplates->templates[user\DOWNLOAD_CHOOSE] . "</a> |
|
272 | + <a href='javascript:other_installers()'>" . $this->Gui->textTemplates->templates[user\DOWNLOAD_CHOOSE]."</a> |
|
273 | 273 | </div> |
274 | 274 | </div> <!-- id='guess_os' -->"; |
275 | 275 | } |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | </td>"; |
286 | 286 | |
287 | 287 | if (!empty(CONFIG['APPEARANCE']['privacy_notice_url'])) { |
288 | - $retval .= "<td><a href='".CONFIG['APPEARANCE']['privacy_notice_url']."'>" . sprintf(_("%s Privacy Notice"),CONFIG_CONFASSISTANT['CONSORTIUM']['display_name']) . "</a></td>"; |
|
288 | + $retval .= "<td><a href='".CONFIG['APPEARANCE']['privacy_notice_url']."'>".sprintf(_("%s Privacy Notice"), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'])."</a></td>"; |
|
289 | 289 | } |
290 | 290 | $retval .= "<td>"; |
291 | 291 | if (CONFIG_CONFASSISTANT['CONSORTIUM']['name'] == "eduroam" && isset(CONFIG_CONFASSISTANT['CONSORTIUM']['deployment-voodoo']) && CONFIG_CONFASSISTANT['CONSORTIUM']['deployment-voodoo'] == "Operations Team") { |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | var sbPage = 1; |
34 | 34 | <?php |
35 | 35 | $profile_list_size = 1; |
36 | -require_once dirname(__DIR__) . '/Divs.php'; |
|
36 | +require_once dirname(__DIR__).'/Divs.php'; |
|
37 | 37 | $divs = new Divs($Gui); |
38 | 38 | |
39 | 39 | $visibility = 'sb'; |
@@ -44,9 +44,9 @@ discard block |
||
44 | 44 | $Gui->loggerInstance->debug(4, $operatingSystem); |
45 | 45 | $uiElements = new web\lib\admin\UIElements(); |
46 | 46 | if ($operatingSystem) { |
47 | - print "recognisedOS = '" . $operatingSystem['device'] . "';\n"; |
|
47 | + print "recognisedOS = '".$operatingSystem['device']."';\n"; |
|
48 | 48 | } |
49 | -require dirname(__DIR__) . '/user/js/cat_js.php'; |
|
49 | +require dirname(__DIR__).'/user/js/cat_js.php'; |
|
50 | 50 | ?> |
51 | 51 | var lang = "<?php echo($Gui->langObject->getLang()) ?>"; |
52 | 52 | </script> |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | <?php |
77 | 77 | switch ($statusInfo['errorcode']) { |
78 | 78 | case "GENERATOR_CONSUMED": |
79 | - echo $uiElements->boxError(_("You attempted to download an installer that was already downloaded before. Please request a new token from your administrator instead."), _("Attempt to re-use download link"), TRUE) . "<p>"; |
|
79 | + echo $uiElements->boxError(_("You attempted to download an installer that was already downloaded before. Please request a new token from your administrator instead."), _("Attempt to re-use download link"), TRUE)."<p>"; |
|
80 | 80 | break; |
81 | 81 | case NULL: |
82 | 82 | default: |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | echo " "; |
100 | 100 | echo sprintf(ngettext("<strong>%d</strong> of your credentials is not valid any more.", "<strong>%d</strong> of your credentials are not valid any more.", $noGoodCerts), $noGoodCerts); |
101 | 101 | } |
102 | - echo " <span id='detailtext'>" . _("I want to see the details.") . "</span>"; |
|
102 | + echo " <span id='detailtext'>"._("I want to see the details.")."</span>"; |
|
103 | 103 | echo "<table id='cert_details'></table>"; |
104 | 104 | } |
105 | 105 | } |
@@ -108,60 +108,60 @@ discard block |
||
108 | 108 | case \core\SilverbulletInvitation::SB_TOKENSTATUS_VALID: // treat both cases as equal |
109 | 109 | case \core\SilverbulletInvitation::SB_TOKENSTATUS_PARTIALLY_REDEEMED: |
110 | 110 | if ($statusInfo['invitation_object']->activationsTotal > 1) { // only show this extra info in the non-trivial case. |
111 | - echo "<h3>" . sprintf(_("Your invitation token is valid for %d more device activations (%d have already been used)."), $statusInfo['invitation_object']->activationsRemaining, $statusInfo['invitation_object']->activationsTotal - $statusInfo['invitation_object']->activationsRemaining) . "</h3>"; |
|
111 | + echo "<h3>".sprintf(_("Your invitation token is valid for %d more device activations (%d have already been used)."), $statusInfo['invitation_object']->activationsRemaining, $statusInfo['invitation_object']->activationsTotal - $statusInfo['invitation_object']->activationsRemaining)."</h3>"; |
|
112 | 112 | } |
113 | 113 | if (!$statusInfo["OS"]) { |
114 | - echo "<p>" . _("Unfortunately, we are unable to determine your device's operating system. If you have made modifications on your device which prevent it from being recognised (e.g. custom 'User Agent' settings), please undo such modifications. You can come back to this page again; the invitation link has not been used up yet.") . "</p>"; |
|
114 | + echo "<p>"._("Unfortunately, we are unable to determine your device's operating system. If you have made modifications on your device which prevent it from being recognised (e.g. custom 'User Agent' settings), please undo such modifications. You can come back to this page again; the invitation link has not been used up yet.")."</p>"; |
|
115 | 115 | break; |
116 | 116 | } |
117 | 117 | |
118 | 118 | $dev = new \core\DeviceFactory($statusInfo['OS']['device']); |
119 | 119 | $dev->device->calculatePreferredEapType([new \core\common\EAP(\core\common\EAP::EAPTYPE_SILVERBULLET)]); |
120 | 120 | if ($dev->device->selectedEap == []) { |
121 | - echo "<p>" . sprintf(_("Unfortunately, the operating system your device uses (%s) is currently not supported for hosted end-user accounts. You can visit this page with a supported operating system later; the invitation link has not been used up yet."), $statusInfo['OS']['display']) . "</p>"; |
|
121 | + echo "<p>".sprintf(_("Unfortunately, the operating system your device uses (%s) is currently not supported for hosted end-user accounts. You can visit this page with a supported operating system later; the invitation link has not been used up yet."), $statusInfo['OS']['display'])."</p>"; |
|
122 | 122 | break; |
123 | 123 | } |
124 | - $message = $dev->device->options['message'] ?? '' ; |
|
124 | + $message = $dev->device->options['message'] ?? ''; |
|
125 | 125 | |
126 | 126 | $sbMessage = $dev->device->options['sb_message'] ?? ''; |
127 | 127 | if ($message != '' && $sbMessage != '') { |
128 | - $message = $message . "<p>" . $sbMessage; |
|
128 | + $message = $message."<p>".$sbMessage; |
|
129 | 129 | } else { |
130 | - $message = $message . $sbMessage; |
|
130 | + $message = $message.$sbMessage; |
|
131 | 131 | } |
132 | 132 | |
133 | - echo "<div id='sb_download_message'><p>" . sprintf(_("You can now download a personalised %s installation program."), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name']); |
|
133 | + echo "<div id='sb_download_message'><p>".sprintf(_("You can now download a personalised %s installation program."), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name']); |
|
134 | 134 | // echo sprintf(_("The installation program is <span class='emph'>strictly personal</span>, to be used <span class='emph'>only on this device (%s)</span>, and it is <span class='emph'>not permitted to share</span> this information with anyone."), $statusInfo['OS']['display']); |
135 | 135 | echo sprintf(_("The installation program is <span class='emph'>strictly personal</span>, to be used <span class='emph'>only on this device (%s)</span>, and it is <span class='emph'>not permitted to share</span> this information with anyone."), $statusInfo['OS']['display']); |
136 | - echo "<p style='color:red;'>" . sprintf(_("When the system detects abuse such as sharing login data with others, all access rights for you will be revoked and you may be sanctioned by your local %s administrator."), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name']) . "</p>"; |
|
137 | - echo "<p>" . _("During the installation process, you will be asked for the following import PIN. This only happens once during the installation. You do not have to write down this PIN.") . "</p></div>"; |
|
136 | + echo "<p style='color:red;'>".sprintf(_("When the system detects abuse such as sharing login data with others, all access rights for you will be revoked and you may be sanctioned by your local %s administrator."), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'])."</p>"; |
|
137 | + echo "<p>"._("During the installation process, you will be asked for the following import PIN. This only happens once during the installation. You do not have to write down this PIN.")."</p></div>"; |
|
138 | 138 | |
139 | 139 | $importPassword = \core\common\Entity::randomString(4, "0123456789"); |
140 | 140 | $profile = new \core\ProfileSilverbullet($statusInfo['profile']->identifier, NULL); |
141 | 141 | |
142 | - echo "<h2>" . sprintf(_("Import PIN: %s"), $importPassword) . "</h2>"; |
|
142 | + echo "<h2>".sprintf(_("Import PIN: %s"), $importPassword)."</h2>"; |
|
143 | 143 | $_SESSION['individualtoken'] = $cleanToken; |
144 | 144 | $_SESSION['importpassword'] = $importPassword; |
145 | - echo "<input type='hidden' name='device' value='" . $statusInfo['OS']['device'] . "'/>"; |
|
145 | + echo "<input type='hidden' name='device' value='".$statusInfo['OS']['device']."'/>"; |
|
146 | 146 | echo "<input type='hidden' name='generatedfor' value='silverbullet'/>"; |
147 | - echo "<button class='large_button' id='user_button_sb' style='height:80px;'><span id='user_buttonnnn'>" . sprintf(_("Click here to download your %s installer!"), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name']) . "</span></button>"; |
|
147 | + echo "<button class='large_button' id='user_button_sb' style='height:80px;'><span id='user_buttonnnn'>".sprintf(_("Click here to download your %s installer!"), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'])."</span></button>"; |
|
148 | 148 | echo "<div class='device_info' id='info_g_sb'></div>"; |
149 | 149 | break; |
150 | 150 | case \core\SilverbulletInvitation::SB_TOKENSTATUS_EXPIRED: |
151 | 151 | echo "<h2>Invitation link expired</h2>"; |
152 | - echo "<p>" . sprintf(_("Unfortunately, the invitation link you just used is too old. The %s sign-up invitation was valid until %s. You cannot use this link any more. Please ask your administrator to issue you a new invitation link."), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'], $statusInfo['invitation_object']->expiry) . "</p>"; |
|
152 | + echo "<p>".sprintf(_("Unfortunately, the invitation link you just used is too old. The %s sign-up invitation was valid until %s. You cannot use this link any more. Please ask your administrator to issue you a new invitation link."), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'], $statusInfo['invitation_object']->expiry)."</p>"; |
|
153 | 153 | echo "<p>Below is all the information about your account's other login details, if any.</p>"; |
154 | 154 | // do NOT break, display full account info instead (this was a previously valid token after all) |
155 | 155 | case \core\SilverbulletInvitation::SB_TOKENSTATUS_REDEEMED: |
156 | 156 | // nothing to say really. User got the breakdown of certs above, and this link doesn't give him any new ones. |
157 | 157 | break; |
158 | 158 | case \core\SilverbulletInvitation::SB_TOKENSTATUS_INVALID: |
159 | - echo "<h2>" . _("Account information not found") . "</h2>"; |
|
160 | - echo "<p>" . sprintf(_("The invitation link you followed does not map to any invititation we have on file.") . "</p><p>" . _("You should use the exact link you got during sign-up to come here. Alternatively, if you have a valid %s credential already, you can visit this page and Accept the question about logging in with a client certificate (select a certificate with a name ending in '…%s')."),CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'], CONFIG_CONFASSISTANT['SILVERBULLET']['realm_suffix']); |
|
159 | + echo "<h2>"._("Account information not found")."</h2>"; |
|
160 | + echo "<p>".sprintf(_("The invitation link you followed does not map to any invititation we have on file.")."</p><p>"._("You should use the exact link you got during sign-up to come here. Alternatively, if you have a valid %s credential already, you can visit this page and Accept the question about logging in with a client certificate (select a certificate with a name ending in '…%s')."), CONFIG_CONFASSISTANT['CONSORTIUM']['display_name'], CONFIG_CONFASSISTANT['SILVERBULLET']['realm_suffix']); |
|
161 | 161 | } |
162 | 162 | if (isset($statusInfo['profile_id']) && isset($statusInfo['idp_id'])) { |
163 | - echo "<input type='hidden' name='profile' id='profile_id' value='" . $statusInfo['profile_id'] . "'/>"; |
|
164 | - echo "<input type='hidden' id='inst_id' name='idp' value='" . $statusInfo['idp_id'] . "'/>"; |
|
163 | + echo "<input type='hidden' name='profile' id='profile_id' value='".$statusInfo['profile_id']."'/>"; |
|
164 | + echo "<input type='hidden' id='inst_id' name='idp' value='".$statusInfo['idp_id']."'/>"; |
|
165 | 165 | } |
166 | 166 | ?> |
167 | 167 | </div> |
@@ -181,18 +181,18 @@ discard block |
||
181 | 181 | $attributes = $statusInfo['attributes']; |
182 | 182 | $supportInfo = ''; |
183 | 183 | if (!empty($attributes['local_url'])) { |
184 | - $supportInfo .= '<tr><td>' . ("WWW:") . '</td><td><a href="' . $attributes['local_url'] . '" target="_blank">' . $attributes['local_url'] . '</a></td></tr>'; |
|
184 | + $supportInfo .= '<tr><td>'.("WWW:").'</td><td><a href="'.$attributes['local_url'].'" target="_blank">'.$attributes['local_url'].'</a></td></tr>'; |
|
185 | 185 | } |
186 | 186 | if (!empty($attributes['local_email'])) { |
187 | - $supportInfo .= '<tr><td>' . ("email:") . '</td><td><a href="' . $attributes['local_email'] . '" target="_blank">' . $attributes['local_email'] . '</a></td></tr>'; |
|
187 | + $supportInfo .= '<tr><td>'.("email:").'</td><td><a href="'.$attributes['local_email'].'" target="_blank">'.$attributes['local_email'].'</a></td></tr>'; |
|
188 | 188 | } |
189 | 189 | if (!empty($attributes['local_phone'])) { |
190 | - $supportInfo .= '<tr><td>' . ("tel:") . '</td><td><a href="' . $attributes['local_phone'] . '" target="_blank">' . $attributes['local_phone'] . '</a></td></tr>'; |
|
190 | + $supportInfo .= '<tr><td>'.("tel:").'</td><td><a href="'.$attributes['local_phone'].'" target="_blank">'.$attributes['local_phone'].'</a></td></tr>'; |
|
191 | 191 | } |
192 | 192 | if ($supportInfo != '') { |
193 | - $supportInfo = "<table><tr><th colspan='2'>" . _("If you encounter problems, then you can obtain direct assistance from your organisation at:") . "</th></tr>$supportInfo</table>"; |
|
193 | + $supportInfo = "<table><tr><th colspan='2'>"._("If you encounter problems, then you can obtain direct assistance from your organisation at:")."</th></tr>$supportInfo</table>"; |
|
194 | 194 | } else { |
195 | - $supportInfo = "<table><tr><th colspan='2'>" . _("If you encounter problems you should ask those who gave you your account for help.") . "</th></tr></table>"; |
|
195 | + $supportInfo = "<table><tr><th colspan='2'>"._("If you encounter problems you should ask those who gave you your account for help.")."</th></tr></table>"; |
|
196 | 196 | } |
197 | 197 | ?> |
198 | 198 | <script> |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | var logo = <?php echo $statusInfo['idp_logo']; ?>; |
202 | 202 | var idpId = <?php echo $statusInfo['idp_id']; ?>; |
203 | 203 | <?php |
204 | - if($message != '') { |
|
204 | + if ($message != '') { |
|
205 | 205 | echo "message = \"$message\";\n"; |
206 | 206 | } |
207 | 207 | ?> |