@@ -29,7 +29,7 @@ |
||
29 | 29 | echo $deco->pageheader(sprintf(_("%s: %s Customisation (submission completed)"), CONFIG['APPEARANCE']['productname'], $uiElements->nomenclature_fed), "FEDERATION"); |
30 | 30 | $my_fed = $validator->Federation($_GET['fed_id'], $_SESSION['user']); |
31 | 31 | if (isset($_POST['submitbutton'])) { |
32 | - if (( $_POST['submitbutton'] == web\lib\admin\FormElements::BUTTON_SAVE) && isset($_POST['option']) && isset($_POST['value'])) { // here we go |
|
32 | + if (($_POST['submitbutton'] == web\lib\admin\FormElements::BUTTON_SAVE) && isset($_POST['option']) && isset($_POST['value'])) { // here we go |
|
33 | 33 | $fed_name = $my_fed->name; |
34 | 34 | echo "<h1>" . sprintf(_("Submitted attributes for %s '%s'"), $uiElements->nomenclature_fed, $fed_name) . "</h1>"; |
35 | 35 | echo "<table>"; |
@@ -26,4 +26,4 @@ |
||
26 | 26 | $Gui->defaultPagePrelude(); |
27 | 27 | |
28 | 28 | // and now, serve actual data |
29 | -include("skins/".$Gui->skinObject->skin."/index.php"); |
|
29 | +include("skins/" . $Gui->skinObject->skin . "/index.php"); |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | <head lang='" . $ourlocale . "'> |
25 | 25 | <meta http-equiv='Content-Type' content='text/html; charset=UTF-8'>"; |
26 | 26 | // diag area needs its own CSS at some point, but use the user area one for now |
27 | - $cssUrl = $gui->skinObject->findResourceUrl("CSS","cat.css.php"); |
|
27 | + $cssUrl = $gui->skinObject->findResourceUrl("CSS", "cat.css.php"); |
|
28 | 28 | echo "<link rel='stylesheet' type='text/css' href='$cssUrl' />"; |
29 | 29 | echo "<title>" . htmlspecialchars(_("Sanity check for dynamic discovery of realms")) . "</title>"; |
30 | 30 | |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | // checking our own stuff. Enable thorough checks |
48 | 48 | $check_thorough = TRUE; |
49 | 49 | $check_realm = $checkrealm[0]['value']; |
50 | - $testsuite = new \core\diag\RADIUSTests($check_realm, $my_profile->getRealmCheckOuterUsername(), \core\common\EAP::multiConversion($my_profile->getEapMethodsinOrderOfPreference(1)), $my_profile->getCollapsedAttributes()['eap:server_name'] , $my_profile->getCollapsedAttributes()["eap:ca_file"]); |
|
50 | + $testsuite = new \core\diag\RADIUSTests($check_realm, $my_profile->getRealmCheckOuterUsername(), \core\common\EAP::multiConversion($my_profile->getEapMethodsinOrderOfPreference(1)), $my_profile->getCollapsedAttributes()['eap:server_name'], $my_profile->getCollapsedAttributes()["eap:ca_file"]); |
|
51 | 51 | $rfc7585suite = new \core\diag\RFC7585Tests($check_realm); |
52 | 52 | } else { |
53 | 53 | $error_message = _("You asked for a realm check, but we don't know the realm for this profile!") . "</p>"; |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | } |
66 | 66 | } |
67 | 67 | if ($check_realm) { |
68 | - $testsuite = new \core\diag\RADIUSTests($check_realm, "@".$check_realm); |
|
68 | + $testsuite = new \core\diag\RADIUSTests($check_realm, "@" . $check_realm); |
|
69 | 69 | $rfc7585suite = new \core\diag\RFC7585Tests($check_realm); |
70 | 70 | } else { |
71 | 71 | $error_message = _("No valid realm name given, cannot execute any checks!"); |
@@ -751,13 +751,13 @@ discard block |
||
751 | 751 | } |
752 | 752 | |
753 | 753 | if (CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT'] == "LOCAL") { |
754 | - $returnUrl = "../admin/overview_idp.php?inst_id=".$my_inst->identifier; |
|
754 | + $returnUrl = "../admin/overview_idp.php?inst_id=" . $my_inst->identifier; |
|
755 | 755 | } else { |
756 | - $returnUrl = CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT']."/admin/overview_idp.php?inst_id=".$my_inst->identifier; |
|
756 | + $returnUrl = CONFIG['FUNCTIONALITY_LOCATIONS']['CONFASSISTANT'] . "/admin/overview_idp.php?inst_id=" . $my_inst->identifier; |
|
757 | 757 | } |
758 | 758 | ?> |
759 | - <form method='post' action='<?php echo $returnUrl;?>' accept-charset='UTF-8'> |
|
760 | - <button type='submit' name='submitbutton' value='<?php echo web\lib\admin\FormElements::BUTTON_CLOSE; ?>'><?php echo sprintf(_("Return to %s administrator area"),$gui->nomenclature_inst); ?></button> |
|
759 | + <form method='post' action='<?php echo $returnUrl; ?>' accept-charset='UTF-8'> |
|
760 | + <button type='submit' name='submitbutton' value='<?php echo web\lib\admin\FormElements::BUTTON_CLOSE; ?>'><?php echo sprintf(_("Return to %s administrator area"), $gui->nomenclature_inst); ?></button> |
|
761 | 761 | </form> |
762 | 762 | <script> |
763 | 763 |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | namespace core\common; |
12 | 12 | use \Exception; |
13 | 13 | |
14 | -require_once(dirname(dirname(__DIR__))."/config/_config.php"); |
|
14 | +require_once(dirname(dirname(__DIR__)) . "/config/_config.php"); |
|
15 | 15 | |
16 | 16 | class Logging { |
17 | 17 | |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | echo " ($category) "; |
87 | 87 | echo " " . $user . ": "; |
88 | 88 | if (is_string($message)) { |
89 | - echo $message ."\n"; |
|
89 | + echo $message . "\n"; |
|
90 | 90 | } else { |
91 | 91 | echo var_export($message); |
92 | 92 | } |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | <html xmlns='http://www.w3.org/1999/xhtml' lang='" . $ourlocale . "'> |
13 | 13 | <head lang='" . $ourlocale . "'> |
14 | 14 | <meta http-equiv='Content-Type' content='text/html; charset=UTF-8'>"; |
15 | - $cssUrl = $guiObject->skinObject->findResourceUrl("CSS","cat.css.php"); |
|
15 | + $cssUrl = $guiObject->skinObject->findResourceUrl("CSS", "cat.css.php"); |
|
16 | 16 | |
17 | 17 | echo "<link rel='stylesheet' type='text/css' href='$cssUrl' />"; |
18 | 18 | echo "<title>" . htmlspecialchars($pagetitle) . "</title>"; |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | |
24 | 24 | $Gui->loggerInstance->debug(4, "\n---------------------- index.php START --------------------------\n"); |
25 | 25 | |
26 | -defaultPagePrelude($Gui,CONFIG['APPEARANCE']['productname_long'], FALSE); |
|
26 | +defaultPagePrelude($Gui, CONFIG['APPEARANCE']['productname_long'], FALSE); |
|
27 | 27 | |
28 | 28 | ?> |
29 | 29 | <script type="text/javascript">ie_version = 0;</script> |
@@ -43,9 +43,9 @@ discard block |
||
43 | 43 | <script type="text/javascript">ie_version=10;</script> |
44 | 44 | <![endif]--> |
45 | 45 | <!-- JQuery --> |
46 | -<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/jquery.js");?>"></script> |
|
47 | -<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/jquery-migrate-1.2.1.js");?>"></script> |
|
48 | -<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/jquery-ui.js");?>"></script> |
|
46 | +<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/jquery.js"); ?>"></script> |
|
47 | +<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/jquery-migrate-1.2.1.js"); ?>"></script> |
|
48 | +<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/jquery-ui.js"); ?>"></script> |
|
49 | 49 | <!-- JQuery --> |
50 | 50 | <script type="text/javascript"> |
51 | 51 | var recognisedOS = ''; |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | ?> |
60 | 60 | var lang = "<?php echo($Gui->langObject->getLang()) ?>"; |
61 | 61 | </script> |
62 | -<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $Gui->skinObject->findResourceUrl("CSS","cat-user.css");?>" /> |
|
62 | +<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $Gui->skinObject->findResourceUrl("CSS", "cat-user.css"); ?>" /> |
|
63 | 63 | |
64 | 64 | </head> |
65 | 65 | <body> |
@@ -71,10 +71,10 @@ discard block |
||
71 | 71 | ?> |
72 | 72 | <div id="info_overlay"> <!-- device info --> |
73 | 73 | <div id="info_window"></div> |
74 | - <img id="info_menu_close" class="close_button" src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES","icons/button_cancel.png")?>" ALT="Close"/> |
|
74 | + <img id="info_menu_close" class="close_button" src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES", "icons/button_cancel.png")?>" ALT="Close"/> |
|
75 | 75 | </div> |
76 | 76 | <div id="main_menu_info" style="display:none"> <!-- stuff triggered form main menu --> |
77 | - <img id="main_menu_close" class="close_button" src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES","icons/button_cancel.png")?>" ALT="Close"/> |
|
77 | + <img id="main_menu_close" class="close_button" src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES", "icons/button_cancel.png")?>" ALT="Close"/> |
|
78 | 78 | <div id="main_menu_content"></div> |
79 | 79 | </div> |
80 | 80 | <div id="main_body"> |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | <span id="inst_name_span"><?php echo $statusInfo['idp']->name; ?></span> |
86 | 86 | </div> |
87 | 87 | <div> <!-- IdP logo, if present --> |
88 | - <img id="idp_logo" src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES","empty.png")?>" alt="IdP Logo"/> |
|
88 | + <img id="idp_logo" src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES", "empty.png")?>" alt="IdP Logo"/> |
|
89 | 89 | </div> |
90 | 90 | <div id="user_info"></div> <!-- this will be filled with the profile contact information --> |
91 | 91 | <div id="devices" class="device_list"> |
@@ -20,9 +20,9 @@ discard block |
||
20 | 20 | } |
21 | 21 | public function printMenu($menu = NULL,$id=NULL) { |
22 | 22 | $menu = $menu ?? $this->menu; |
23 | - if(count($menu) == 0) { |
|
24 | - return; |
|
25 | - } |
|
23 | + if(count($menu) == 0) { |
|
24 | + return; |
|
25 | + } |
|
26 | 26 | $out = "\n<ul>\n"; |
27 | 27 | foreach ($menu as $menuItem) { |
28 | 28 | $itemVisibility = $menuItem['visibility'] ?? 'all'; |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | $out .= $this->printMenuItem($menuItem['text'], $link, $class); |
39 | 39 | $out .= $this->printMenu($submenu,$iD); |
40 | 40 | $out .= "</li>\n"; |
41 | - } |
|
41 | + } |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | $out .= '</ul>'; |
@@ -14,13 +14,13 @@ discard block |
||
14 | 14 | * as the title argument or an two element array - the first element of this array will be |
15 | 15 | * the title and the second is a style specification applied to the given menu item |
16 | 16 | */ |
17 | - public function __construct($menuArray,$visibility = 'all') { |
|
17 | + public function __construct($menuArray, $visibility = 'all') { |
|
18 | 18 | $this->menu = $menuArray; |
19 | 19 | $this->visibility = $visibility; |
20 | 20 | } |
21 | - public function printMenu($menu = NULL,$id=NULL) { |
|
21 | + public function printMenu($menu = NULL, $id = NULL) { |
|
22 | 22 | $menu = $menu ?? $this->menu; |
23 | - if(count($menu) == 0) { |
|
23 | + if (count($menu) == 0) { |
|
24 | 24 | return; |
25 | 25 | } |
26 | 26 | $out = "\n<ul>\n"; |
@@ -30,13 +30,13 @@ discard block |
||
30 | 30 | $iD = $menuItem['id'] ?? $id; |
31 | 31 | $catInfo = NULL; |
32 | 32 | if (!empty($menuItem['catInfo'])) { |
33 | - $catInfo = 'javascript:infoCAT("'.$iD.'", "'.$menuItem['catInfo'][0].'","'.$menuItem['catInfo'][1].'")'; |
|
33 | + $catInfo = 'javascript:infoCAT("' . $iD . '", "' . $menuItem['catInfo'][0] . '","' . $menuItem['catInfo'][1] . '")'; |
|
34 | 34 | } |
35 | 35 | $link = $catInfo ?? $menuItem['link'] ?? ''; |
36 | - $class = empty($menuItem['class']) ? '' : ' class="'.$menuItem['class'].'"'; |
|
37 | - $submenu = $menuItem['submenu'] ?? []; |
|
36 | + $class = empty($menuItem['class']) ? '' : ' class="' . $menuItem['class'] . '"'; |
|
37 | + $submenu = $menuItem['submenu'] ?? []; |
|
38 | 38 | $out .= $this->printMenuItem($menuItem['text'], $link, $class); |
39 | - $out .= $this->printMenu($submenu,$iD); |
|
39 | + $out .= $this->printMenu($submenu, $iD); |
|
40 | 40 | $out .= "</li>\n"; |
41 | 41 | } |
42 | 42 | } |
@@ -45,8 +45,8 @@ discard block |
||
45 | 45 | return($out); |
46 | 46 | } |
47 | 47 | |
48 | - private function printMenuItem($itemText,$itemLink = '',$itemClass = '') { |
|
49 | - return "<li><a href='" . $itemLink . "'".$itemClass.'>' . $itemText . "</a>"; |
|
48 | + private function printMenuItem($itemText, $itemLink = '', $itemClass = '') { |
|
49 | + return "<li><a href='" . $itemLink . "'" . $itemClass . '>' . $itemText . "</a>"; |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | private $menu; |
@@ -18,9 +18,9 @@ discard block |
||
18 | 18 | ?> |
19 | 19 | |
20 | 20 | <!-- JQuery --> |
21 | -<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/jquery.js") ?>"></script> |
|
22 | -<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/jquery-migrate-1.2.1.js") ?>"></script> |
|
23 | -<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/jquery-ui.js") ?>"></script> |
|
21 | +<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/jquery.js") ?>"></script> |
|
22 | +<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/jquery-migrate-1.2.1.js") ?>"></script> |
|
23 | +<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/jquery-ui.js") ?>"></script> |
|
24 | 24 | <!-- JQuery --> |
25 | 25 | |
26 | 26 | <script type="text/javascript"> |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | include("user/js/cat_js.php"); |
46 | 46 | ?> |
47 | 47 | var loading_ico = new Image(); |
48 | - loading_ico.src = "<?php echo $Gui->skinObject->findResourceUrl("IMAGES","icons/loading51.gif")?>"; |
|
48 | + loading_ico.src = "<?php echo $Gui->skinObject->findResourceUrl("IMAGES", "icons/loading51.gif")?>"; |
|
49 | 49 | </script> |
50 | 50 | <?php $Gui->langObject->setTextDomain("web_user"); ?> |
51 | 51 | <!-- DiscoJuice --> |
@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | <script type="text/javascript"> |
54 | 54 | var lang = "<?php echo($Gui->langObject->getLang()) ?>"; |
55 | 55 | </script> |
56 | -<link rel="stylesheet" type="text/css" href="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","discojuice/css/discojuice.css")?>" /> |
|
56 | +<link rel="stylesheet" type="text/css" href="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "discojuice/css/discojuice.css")?>" /> |
|
57 | 57 | <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"> |
58 | -<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $Gui->skinObject->findResourceUrl("CSS","cat-user.css");?>" /> |
|
58 | +<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $Gui->skinObject->findResourceUrl("CSS", "cat-user.css"); ?>" /> |
|
59 | 59 | </head> |
60 | 60 | <body> |
61 | 61 | <div id="wrap"> |
@@ -63,14 +63,14 @@ discard block |
||
63 | 63 | <?php include "div_heading.php"; ?> |
64 | 64 | <div id="main_page"> |
65 | 65 | <div id="loading_ico"> |
66 | - <?php echo _("Authenticating") . "..." ?><br><img src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES","icons/loading51.gif")?>" alt="Authenticating ..."/> |
|
66 | + <?php echo _("Authenticating") . "..." ?><br><img src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES", "icons/loading51.gif")?>" alt="Authenticating ..."/> |
|
67 | 67 | </div> |
68 | 68 | <div id="info_overlay"> <!-- device info --> |
69 | 69 | <div id="info_window"></div> |
70 | - <img id="info_menu_close" class="close_button" src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES","icons/button_cancel.png")?>" ALT="Close"/> |
|
70 | + <img id="info_menu_close" class="close_button" src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES", "icons/button_cancel.png")?>" ALT="Close"/> |
|
71 | 71 | </div> |
72 | 72 | <div id="main_menu_info" style="display:none"> <!-- stuff triggered form main menu --> |
73 | - <img id="main_menu_close" class="close_button" src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES","icons/button_cancel.png")?>" ALT="Close"/> |
|
73 | + <img id="main_menu_close" class="close_button" src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES", "icons/button_cancel.png")?>" ALT="Close"/> |
|
74 | 74 | <div id="main_menu_content"></div> |
75 | 75 | </div> |
76 | 76 | <div id="main_body"> |
@@ -79,16 +79,16 @@ discard block |
||
79 | 79 | <?php if (empty($_REQUEST['idp'])) { ?> |
80 | 80 | <div id="front_page"> |
81 | 81 | <?php |
82 | - echo $divs->div_top_welcome(); |
|
83 | - echo $divs->div_roller(); |
|
84 | - echo $divs->div_main_button(); ?> |
|
82 | + echo $divs->div_top_welcome(); |
|
83 | + echo $divs->div_roller(); |
|
84 | + echo $divs->div_main_button(); ?> |
|
85 | 85 | </div> <!-- id="front_page" --> |
86 | 86 | <?php } ?> |
87 | 87 | <!-- the user_page div contains all information for a given IdP, i.e. the profile selection (if multiple profiles are defined) |
88 | 88 | and the device selection (including the automatic OS detection ) --> |
89 | 89 | <div id="user_page"> |
90 | 90 | <?php echo $divs->div_institution(); |
91 | - echo $divs->div_profiles(); ?> |
|
91 | + echo $divs->div_profiles(); ?> |
|
92 | 92 | <div id="user_info"></div> <!-- this will be filled with the profile contact information --> |
93 | 93 | <?php echo $divs->div_user_welcome() ?> |
94 | 94 | <div id="profile_redirect"> <!-- this is shown when the entire profile is redirected --> |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | if ($operatingSystem) { |
107 | 107 | echo $divs->div_guess_os($operatingSystem); |
108 | 108 | } |
109 | - echo $divs->div_otherinstallers(); |
|
109 | + echo $divs->div_otherinstallers(); |
|
110 | 110 | ?> |
111 | 111 | </div> <!-- id="devices" --> |
112 | 112 | <input type="hidden" name="profile" id="profile_id"/> |
@@ -3,11 +3,11 @@ discard block |
||
3 | 3 | $langsArray = []; |
4 | 4 | $selectedLang = $Gui->langObject->getLang(); |
5 | 5 | foreach (CONFIG['LANGUAGES'] as $lang => $value) { |
6 | - if ($lang == $selectedLang) { |
|
7 | - $langsArray[] = ['text'=>$value['display'], 'link'=>'javascript:changeLang("'.$lang.'")', 'class'=>'selected-lang']; |
|
8 | - } else { |
|
9 | - $langsArray[] = ['text'=>$value['display'], 'link'=>'javascript:changeLang("'.$lang.'")']; |
|
10 | - } |
|
6 | + if ($lang == $selectedLang) { |
|
7 | + $langsArray[] = ['text'=>$value['display'], 'link'=>'javascript:changeLang("'.$lang.'")', 'class'=>'selected-lang']; |
|
8 | + } else { |
|
9 | + $langsArray[] = ['text'=>$value['display'], 'link'=>'javascript:changeLang("'.$lang.'")']; |
|
10 | + } |
|
11 | 11 | } |
12 | 12 | |
13 | 13 | |
@@ -15,19 +15,19 @@ discard block |
||
15 | 15 | |
16 | 16 | $menu = new Menu([ |
17 | 17 | ['id'=>'start', |
18 | - 'text'=>_("Start page"), |
|
19 | - 'visibility' => 'index'], |
|
18 | + 'text'=>_("Start page"), |
|
19 | + 'visibility' => 'index'], |
|
20 | 20 | ['id'=>'about', |
21 | - 'text'=>_("About"),'link'=>'','submenu'=>[ |
|
21 | + 'text'=>_("About"),'link'=>'','submenu'=>[ |
|
22 | 22 | ['text'=>sprintf(_("About %s"), CONFIG['APPEARANCE']['productname']), |
23 | - 'catInfo'=>['about_cat',sprintf(_("About %s"), CONFIG['APPEARANCE']['productname'])]], |
|
23 | + 'catInfo'=>['about_cat',sprintf(_("About %s"), CONFIG['APPEARANCE']['productname'])]], |
|
24 | 24 | ['text'=>sprintf(_("About %s"), CONFIG['CONSORTIUM']['name']), |
25 | - 'link'=>CONFIG['CONSORTIUM']['homepage']], |
|
25 | + 'link'=>CONFIG['CONSORTIUM']['homepage']], |
|
26 | 26 | ]], |
27 | 27 | ['id'=>'lang', |
28 | - 'text'=>_("Language"), 'submenu'=>$langsArray,], |
|
28 | + 'text'=>_("Language"), 'submenu'=>$langsArray,], |
|
29 | 29 | ['id'=>'help', |
30 | - 'text'=>_("Help"), 'submenu'=>[ |
|
30 | + 'text'=>_("Help"), 'submenu'=>[ |
|
31 | 31 | ['text'=>_("My institution is not listed"), 'catInfo'=>['idp_not_listed',_("FAQ")], 'visibility'=>'index'], |
32 | 32 | ['text'=>_("My device is not listed"), 'catInfo'=>['device_not_listed',_("FAQ")], 'visibility'=>'index'], |
33 | 33 | ['text'=>_("SB help item"),'visibility'=>'xxx'], |
@@ -36,16 +36,16 @@ discard block |
||
36 | 36 | ['text'=>_("Contact"), 'catInfo'=>['contact',_("FAQ")]], |
37 | 37 | ]], |
38 | 38 | ['id'=>'manage', |
39 | - 'text'=>_("Manage"),'submenu'=>[ |
|
39 | + 'text'=>_("Manage"),'submenu'=>[ |
|
40 | 40 | ['text'=>sprintf(_("%s admin access"),CONFIG['CONSORTIUM']['name']), |
41 | - 'catInfo'=>['admin',sprintf(_("%s admin:<br>manage your IdP"), CONFIG['CONSORTIUM']['name'])]], |
|
41 | + 'catInfo'=>['admin',sprintf(_("%s admin:<br>manage your IdP"), CONFIG['CONSORTIUM']['name'])]], |
|
42 | 42 | ['text'=>_("Become a CAT developer"), |
43 | - 'catInfo'=>['develop',_("Become a CAT developer")]], |
|
43 | + 'catInfo'=>['develop',_("Become a CAT developer")]], |
|
44 | 44 | ['text'=>_("Documentation")], |
45 | 45 | ], |
46 | - 'visibility' => 'index'], |
|
46 | + 'visibility' => 'index'], |
|
47 | 47 | ['id'=>'tou', |
48 | - 'text'=>_("Terms of use"), 'catInfo'=>['tou','TOU']], |
|
48 | + 'text'=>_("Terms of use"), 'catInfo'=>['tou','TOU']], |
|
49 | 49 | ], |
50 | 50 | $visibility |
51 | 51 | ); |
@@ -4,9 +4,9 @@ discard block |
||
4 | 4 | $selectedLang = $Gui->langObject->getLang(); |
5 | 5 | foreach (CONFIG['LANGUAGES'] as $lang => $value) { |
6 | 6 | if ($lang == $selectedLang) { |
7 | - $langsArray[] = ['text'=>$value['display'], 'link'=>'javascript:changeLang("'.$lang.'")', 'class'=>'selected-lang']; |
|
7 | + $langsArray[] = ['text'=>$value['display'], 'link'=>'javascript:changeLang("' . $lang . '")', 'class'=>'selected-lang']; |
|
8 | 8 | } else { |
9 | - $langsArray[] = ['text'=>$value['display'], 'link'=>'javascript:changeLang("'.$lang.'")']; |
|
9 | + $langsArray[] = ['text'=>$value['display'], 'link'=>'javascript:changeLang("' . $lang . '")']; |
|
10 | 10 | } |
11 | 11 | } |
12 | 12 | |
@@ -18,34 +18,34 @@ discard block |
||
18 | 18 | 'text'=>_("Start page"), |
19 | 19 | 'visibility' => 'index'], |
20 | 20 | ['id'=>'about', |
21 | - 'text'=>_("About"),'link'=>'','submenu'=>[ |
|
21 | + 'text'=>_("About"), 'link'=>'', 'submenu'=>[ |
|
22 | 22 | ['text'=>sprintf(_("About %s"), CONFIG['APPEARANCE']['productname']), |
23 | - 'catInfo'=>['about_cat',sprintf(_("About %s"), CONFIG['APPEARANCE']['productname'])]], |
|
23 | + 'catInfo'=>['about_cat', sprintf(_("About %s"), CONFIG['APPEARANCE']['productname'])]], |
|
24 | 24 | ['text'=>sprintf(_("About %s"), CONFIG['CONSORTIUM']['name']), |
25 | 25 | 'link'=>CONFIG['CONSORTIUM']['homepage']], |
26 | 26 | ]], |
27 | 27 | ['id'=>'lang', |
28 | - 'text'=>_("Language"), 'submenu'=>$langsArray,], |
|
28 | + 'text'=>_("Language"), 'submenu'=>$langsArray, ], |
|
29 | 29 | ['id'=>'help', |
30 | 30 | 'text'=>_("Help"), 'submenu'=>[ |
31 | - ['text'=>_("My institution is not listed"), 'catInfo'=>['idp_not_listed',_("FAQ")], 'visibility'=>'index'], |
|
32 | - ['text'=>_("My device is not listed"), 'catInfo'=>['device_not_listed',_("FAQ")], 'visibility'=>'index'], |
|
33 | - ['text'=>_("SB help item"),'visibility'=>'xxx'], |
|
34 | - ['text'=>_("What is eduroam"), 'catInfo'=>['what_is_eduroam',_("FAQ")]], |
|
35 | - ['text'=>_("FAQ"), 'catInfo'=>['faq',_("FAQ")]], |
|
36 | - ['text'=>_("Contact"), 'catInfo'=>['contact',_("FAQ")]], |
|
31 | + ['text'=>_("My institution is not listed"), 'catInfo'=>['idp_not_listed', _("FAQ")], 'visibility'=>'index'], |
|
32 | + ['text'=>_("My device is not listed"), 'catInfo'=>['device_not_listed', _("FAQ")], 'visibility'=>'index'], |
|
33 | + ['text'=>_("SB help item"), 'visibility'=>'xxx'], |
|
34 | + ['text'=>_("What is eduroam"), 'catInfo'=>['what_is_eduroam', _("FAQ")]], |
|
35 | + ['text'=>_("FAQ"), 'catInfo'=>['faq', _("FAQ")]], |
|
36 | + ['text'=>_("Contact"), 'catInfo'=>['contact', _("FAQ")]], |
|
37 | 37 | ]], |
38 | 38 | ['id'=>'manage', |
39 | - 'text'=>_("Manage"),'submenu'=>[ |
|
40 | - ['text'=>sprintf(_("%s admin access"),CONFIG['CONSORTIUM']['name']), |
|
41 | - 'catInfo'=>['admin',sprintf(_("%s admin:<br>manage your IdP"), CONFIG['CONSORTIUM']['name'])]], |
|
39 | + 'text'=>_("Manage"), 'submenu'=>[ |
|
40 | + ['text'=>sprintf(_("%s admin access"), CONFIG['CONSORTIUM']['name']), |
|
41 | + 'catInfo'=>['admin', sprintf(_("%s admin:<br>manage your IdP"), CONFIG['CONSORTIUM']['name'])]], |
|
42 | 42 | ['text'=>_("Become a CAT developer"), |
43 | - 'catInfo'=>['develop',_("Become a CAT developer")]], |
|
43 | + 'catInfo'=>['develop', _("Become a CAT developer")]], |
|
44 | 44 | ['text'=>_("Documentation")], |
45 | 45 | ], |
46 | 46 | 'visibility' => 'index'], |
47 | 47 | ['id'=>'tou', |
48 | - 'text'=>_("Terms of use"), 'catInfo'=>['tou','TOU']], |
|
48 | + 'text'=>_("Terms of use"), 'catInfo'=>['tou', 'TOU']], |
|
49 | 49 | ], |
50 | 50 | $visibility |
51 | 51 | ); |
@@ -54,11 +54,11 @@ discard block |
||
54 | 54 | <div id="heading"> |
55 | 55 | <?php |
56 | 56 | print '<div id="cat_logo">'; |
57 | -print '<img id="logo_img" src="'. $Gui->skinObject->findResourceUrl("IMAGES","consortium_logo.png").'" alt="Consortium Logo"/>'; |
|
57 | +print '<img id="logo_img" src="' . $Gui->skinObject->findResourceUrl("IMAGES", "consortium_logo.png") . '" alt="Consortium Logo"/>'; |
|
58 | 58 | print '<span>Configuration Assistant Tool</span>'; |
59 | 59 | print '</div>'; |
60 | -print '<div id="motd">' . ( isset(CONFIG['APPEARANCE']['MOTD']) ? CONFIG['APPEARANCE']['MOTD'] : ' ' ) . '</div> |
|
61 | -<img id="hamburger" src="'. $Gui->skinObject->findResourceUrl("IMAGES","icons/menu.png").'" alt="Menu"/>'; |
|
60 | +print '<div id="motd">' . (isset(CONFIG['APPEARANCE']['MOTD']) ? CONFIG['APPEARANCE']['MOTD'] : ' ') . '</div> |
|
61 | +<img id="hamburger" src="'. $Gui->skinObject->findResourceUrl("IMAGES", "icons/menu.png") . '" alt="Menu"/>'; |
|
62 | 62 | print '<div id="menu_top">'; |
63 | 63 | print $menu->printMenu(); |
64 | 64 |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | * @package ModuleWriting |
20 | 20 | */ |
21 | 21 | namespace devices\xml; |
22 | -require_once(dirname(__FILE__).'/XML.inc.php'); |
|
22 | +require_once(dirname(__FILE__) . '/XML.inc.php'); |
|
23 | 23 | |
24 | 24 | /** |
25 | 25 | * This class implements full functionality of the generic XML device |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | $objs = []; |
155 | 155 | if ($this->langScope === 'global') { |
156 | 156 | foreach ($attributeList['langs'] as $language => $value) { |
157 | - $language = ( $language === 'C' ? 'any' : $language ); |
|
157 | + $language = ($language === 'C' ? 'any' : $language); |
|
158 | 158 | $obj = new $className(); |
159 | 159 | $obj->setValue($value); |
160 | 160 | $obj->setAttributes(['lang' => $language]); |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | $profileNameLangs = $attr['profile:name']['langs']; |
179 | 179 | } |
180 | 180 | foreach ($instNameLangs as $language => $value) { |
181 | - $language = ( $language === 'C' ? 'any' : $language ); |
|
181 | + $language = ($language === 'C' ? 'any' : $language); |
|
182 | 182 | $displayname = new DisplayName(); |
183 | 183 | if (isset($profileNameLangs)) { |
184 | 184 | $langOrC = isset($profileNameLangs[$language]) ? $profileNameLangs[$language] : $profileNameLangs['C']; |
@@ -351,7 +351,7 @@ discard block |
||
351 | 351 | $clientCertificateObject->setValue(base64_encode($this->clientCert["certdata"])); |
352 | 352 | $clientCertificateObject->setAttributes(['format' => 'PKCS12', 'encoding' => 'base64']); |
353 | 353 | |
354 | - $clientsidecredential->setProperty('ClientCertificate',$clientCertificateObject); |
|
354 | + $clientsidecredential->setProperty('ClientCertificate', $clientCertificateObject); |
|
355 | 355 | } |
356 | 356 | |
357 | 357 | $authmethod->setProperty('ClientSideCredential', $clientsidecredential); |