24 include_once
'./Services/Component/classes/class.ilPlugin.php';
25 include_once
'./Services/AuthShibboleth/interfaces/interface.ilShibbolethRoleAssignmentPlugin.php';
54 return 'AuthShibboleth';
64 return 'ShibbolethAuthenticationHook';
92 protected function checkValue($a_user_data, $a_keyword, $a_value) {
93 if (! $a_user_data[$a_keyword]) {
96 if (is_array($a_user_data[$a_keyword])) {
97 foreach ($a_user_data[$a_keyword] as $values) {
98 if (strcasecmp(trim($values), $a_value) == 0) {
105 if (strcasecmp(trim($a_user_data[$a_keyword]), trim($a_value)) == 0) {