-
Notifications
You must be signed in to change notification settings - Fork 12
/
options-admin.php
1026 lines (946 loc) · 43.8 KB
/
options-admin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Shibboleth Options - Admin
*
* @todo this file should be cleaned up and organized better
* @package shibboleth
*/
/**
* Setup admin tabs for the Shibboleth option page.
*
* @param string $current the current tab.
* @since 1.9
*/
function shibboleth_admin_tabs( $current = 'general' ) {
$tabs = array(
'general' => __( 'General' ),
'idps' => __( 'Identity Providers', 'shibboleth' ),
'user' => __( 'User' ),
'authorization' => __( 'Authorization', 'shibboleth' ),
'logging' => __( 'Logging', 'shibboleth' ),
);
echo '<nav class="nav-tab-wrapper">';
foreach ( $tabs as $tab => $name ) {
$class = ( $tab === $current ) ? ' nav-tab-active' : '';
echo '<a class="nav-tab' . esc_attr( $class ) . '" href="?page=shibboleth-options&tab=' . esc_attr( $tab ) . '">' . esc_html( $name ) . '</a>';
}
echo '</nav>';
}
/**
* Setup admin menus for Shibboleth options.
*
* @since ?
*/
function shibboleth_admin_panels() {
if ( ! is_multisite() ) {
add_options_page( __( 'Shibboleth Options', 'shibboleth' ), __( 'Shibboleth', 'shibboleth' ), 'manage_options', 'shibboleth-options', 'shibboleth_options_page' );
}
}
add_action( 'admin_menu', 'shibboleth_admin_panels' );
/**
* Setup multisite admin menus for Shibboleth options.
*
* @since ?
*/
function shibboleth_network_admin_panels() {
if ( is_multisite() ) {
add_submenu_page( 'settings.php', __( 'Shibboleth Options', 'shibboleth' ), __( 'Shibboleth', 'shibboleth' ), 'manage_network_options', 'shibboleth-options', 'shibboleth_options_page' );
}
}
add_action( 'network_admin_menu', 'shibboleth_network_admin_panels' );
/**
* Shibboleth header fields.
*
* @since 2.4.3
* @return array
*/
function shibboleth_header_fields() {
return array(
'username' => __( 'Username' ),
'first_name' => __( 'First Name' ),
'last_name' => __( 'Last Name' ),
'nickname' => __( 'Nickname' ),
'display_name' => __( 'Display name', 'shibboleth' ),
'email' => __( 'Email' ),
);
}
/**
* Shibboleth options update helper.
*
* @since 2.4.3
*/
function shibboleth_options_updated() {
$type = 'updated';
$message = __( 'Settings saved.', 'shibboleth' );
if ( function_exists( 'add_settings_error' ) ) {
add_settings_error( 'shibboleth_settings_updated', esc_attr( 'shibboleth_settings_updated' ), $message, $type );
settings_errors( 'shibboleth_settings_updated' );
}
/**
* Action shibboleth_form_submit
*
* @since 1.4
* Hint: use global $_POST within the action.
*/
do_action( 'shibboleth_form_submit' );
}
/**
* Shibboleth - General options tab.
*
* @since 2.4.3
*/
function shibboleth_options_general() {
if ( isset( $_POST['submit'] ) ) {
check_admin_referer( 'shibboleth_update_options' );
if ( ! defined( 'SHIBBOLETH_ATTRIBUTE_ACCESS_METHOD' ) && isset( $_POST['attribute_access'] ) ) {
update_site_option( 'shibboleth_attribute_access_method', sanitize_text_field( wp_unslash( $_POST['attribute_access'] ) ) );
}
if ( ! defined( 'SHIBBOLETH_ATTRIBUTE_ACCESS_METHOD_FALLBACK' ) ) {
update_site_option( 'shibboleth_attribute_access_method_fallback', ! empty( $_POST['attribute_access_fallback'] ) );
}
if ( ! defined( 'SHIBBOLETH_ATTRIBUTE_CUSTOM_ACCESS_METHOD' ) && isset( $_POST['attribute_custom_access'] ) ) {
update_site_option( 'shibboleth_attribute_custom_access_method', sanitize_text_field( wp_unslash( $_POST['attribute_custom_access'] ) ) );
}
if ( ! defined( 'SHIBBOLETH_LOGIN_URL' ) && isset( $_POST['login_url'] ) ) {
update_site_option( 'shibboleth_login_url', esc_url_raw( wp_unslash( $_POST['login_url'] ) ) );
}
if ( ! defined( 'SHIBBOLETH_LOGOUT_URL' ) && isset( $_POST['logout_url'] ) ) {
update_site_option( 'shibboleth_logout_url', esc_url_raw( wp_unslash( $_POST['logout_url'] ) ) );
}
if ( ! defined( 'SHIBBOLETH_SPOOF_KEY' ) && isset( $_POST['spoofkey'] ) ) {
update_site_option( 'shibboleth_spoof_key', sanitize_text_field( wp_unslash( $_POST['spoofkey'] ) ) );
}
if ( ! defined( 'SHIBBOLETH_DEFAULT_TO_SHIB_LOGIN' ) ) {
update_site_option( 'shibboleth_default_to_shib_login', ! empty( $_POST['default_login'] ) );
}
if ( ! defined( 'SHIBBOLETH_AUTO_LOGIN' ) ) {
update_site_option( 'shibboleth_auto_login', ! empty( $_POST['auto_login'] ) );
}
if ( ! defined( 'SHIBBOLETH_DISABLE_LOCAL_AUTH' ) ) {
update_site_option( 'shibboleth_disable_local_auth', ! empty( $_POST['disable_local_auth'] ) );
}
shibboleth_options_updated();
}
$constant = false;
list( $login_url, $from_constant ) = shibboleth_getoption( 'shibboleth_login_url', false, false, true );
$constant = $constant || $from_constant;
list( $logout_url, $from_constant ) = shibboleth_getoption( 'shibboleth_logout_url', false, false, true );
$constant = $constant || $from_constant;
list( $attribute_access, $from_constant ) = shibboleth_getoption( 'shibboleth_attribute_access_method', false, false, true );
$constant = $constant || $from_constant;
list( $attribute_access_fallback, $from_constant ) = shibboleth_getoption( 'shibboleth_attribute_access_method_fallback', false, false, true );
$constant = $constant || $from_constant;
list( $attribute_custom_access, $from_constant ) = shibboleth_getoption( 'shibboleth_attribute_custom_access_method', false, false, true );
$constant = $constant || $from_constant;
list( $spoofkey, $from_constant ) = shibboleth_getoption( 'shibboleth_spoof_key', false, false, true );
$constant = $constant || $from_constant;
list( $default_login, $from_constant ) = shibboleth_getoption( 'shibboleth_default_to_shib_login', false, false, true );
$constant = $constant || $from_constant;
list( $auto_login, $from_constant ) = shibboleth_getoption( 'shibboleth_auto_login', false, false, true );
$constant = $constant || $from_constant;
list( $disable_local_auth, $from_constant ) = shibboleth_getoption( 'shibboleth_disable_local_auth', false, false, true );
$constant = $constant || $from_constant;
?>
<h2><?php esc_html_e( 'General Configuration', 'shibboleth' ); ?></h2>
<?php if ( $constant ) { ?>
<div class="notice notice-warning">
<p><?php echo wp_kses_post( __( '<strong>Note:</strong> Some options below are defined in the <code>wp-config.php</code> file as constants and cannot be modified from this page.', 'shibboleth' ) ); ?></p>
</div>
<?php } ?>
<table class="form-table">
<tr valign="top">
<th scope="row"><label for="login_url"><?php esc_html_e( 'Login URL', 'shibboleth' ); ?></label></th>
<td>
<input type="text" id="login_url" name="login_url" value="<?php echo esc_url( $login_url ); ?>" size="50" <?php defined( 'SHIBBOLETH_LOGIN_URL' ) && disabled( $login_url, SHIBBOLETH_LOGIN_URL ); ?> /><br />
<?php
esc_html_e(
'This URL is constructed from values found in your main Shibboleth
SP configuration file: your site hostname, the Sessions handlerURL,
and the SessionInitiator Location.',
'shibboleth'
);
?>
<br /><?php esc_html_e( 'Wiki Documentation', 'shibboleth' ); ?>:
<a href="https://shibboleth.atlassian.net/wiki/spaces/SP3/pages/2065334685/SessionInitiator" target="_blank">Shibboleth SP v3</a> |
<a href="https://shibboleth.atlassian.net/wiki/spaces/SHIB2/pages/2577072500/NativeSPSessionInitiator" target="_blank">Shibboleth SP v2</a>
</td>
</tr>
<tr valign="top">
<th scope="row"><label for="logout_url"><?php esc_html_e( 'Logout URL', 'shibboleth' ); ?></label></th>
<td>
<input type="text" id="logout_url" name="logout_url" value="<?php echo esc_url( $logout_url ); ?>" size="50" <?php defined( 'SHIBBOLETH_LOGOUT_URL' ) && disabled( $logout_url, SHIBBOLETH_LOGOUT_URL ); ?> /><br />
<?php
esc_html_e(
'This URL is constructed from values found in your main Shibboleth
SP configuration file: your site hostname, the Sessions handlerURL,
and the LogoutInitiator Location (also known as the
SingleLogoutService Location in Shibboleth 1.3).',
'shibboleth'
);
?>
<br /><?php esc_html_e( 'Wiki Documentation', 'shibboleth' ); ?>:
<a href="https://shibboleth.atlassian.net/wiki/spaces/SP3/pages/2065334687/LogoutInitiator" target="_blank">Shibboleth SP v3</a> |
<a href="https://shibboleth.atlassian.net/wiki/spaces/SHIB2/pages/2577072384/NativeSPLogoutInitiator" target="_blank">Shibboleth SP v2</a>
</td>
</tr>
<tr valign="top">
<th scope="row"><label for="attribute_access"><?php esc_html_e( 'Attribute Access', 'shibboleth' ); ?></label></th>
<td>
<select id="attribute_access" name="attribute_access" <?php defined( 'SHIBBOLETH_ATTRIBUTE_ACCESS_METHOD' ) && disabled( $attribute_access, SHIBBOLETH_ATTRIBUTE_ACCESS_METHOD ); ?>>
<option value="standard" <?php selected( $attribute_access, 'standard' ); ?>><?php esc_html_e( 'Environment Variables', 'shibboleth' ); ?></option>
<option value="redirect" <?php selected( $attribute_access, 'redirect' ); ?>><?php esc_html_e( 'Redirected Environment Variables', 'shibboleth' ); ?></option>
<option value="http" <?php selected( $attribute_access, 'http' ); ?>><?php esc_html_e( 'HTTP Headers', 'shibboleth' ); ?></option>
<option value="custom" <?php selected( $attribute_access, 'custom' ); ?>><?php esc_html_e( 'Custom Prefix', 'shibboleth' ); ?></option>
</select>
<p>
<?php
echo wp_kses_post(
__(
'By default, attributes passed from your Shibboleth Service Provider will be accessed using standard environment variables.
For most users, leaving these defaults is perfectly fine. If you are running a special server configuration that results in environment variables
being sent with the prefix <code>REDIRECT_</code>, you should select the "Redirected Environment Variables" option. If you are running
your Shibboleth Service Provider on a reverse proxy, you should select the "HTTP Headers" option and, if at all possible, add a spoofkey below.
If you are running Shibboleth with a custom prefix, you should select the "Custom Prefix" option and complete the "Custom Attribute Access Prefix" field that appears below.',
'shibboleth'
)
);
?>
</p>
</td>
</tr>
<tr id="attribute_custom_access_row" <?php echo ( 'custom' === $attribute_access ? '' : 'style="display:none;"' ); ?>>
<th scope="row"><label for="attribute_custom_access"><?php esc_html_e( 'Custom Attribute Access Prefix', 'shibboleth' ); ?></label></th>
<td>
<input type="text" id="attribute_custom_access" name="attribute_custom_access" value="<?php echo esc_attr( $attribute_custom_access ); ?>" size="50" <?php defined( 'SHIBBOLETH_ATTRIBUTE_CUSTOM_ACCESS_METHOD' ) && disabled( $attribute_custom_access, SHIBBOLETH_ATTRIBUTE_CUSTOM_ACCESS_METHOD ); ?> /><br />
<p>
<?php
echo wp_kses_post(
__(
'If you wish to use a custom attribute access prefix, enter it here. This field is case-insensitive.
<br /><b>WARNING:</b> If you incorrectly set this option, you will force <b><i>ALL</i></b> attempts to authenticate with Shibboleth to fail.',
'shibboleth'
)
);
?>
</p>
</td>
</tr>
<tr id="spoofkey_row" <?php echo ( 'http' === $attribute_access ? '' : 'style="display:none;"' ); ?>>
<th scope="row"><label for="spoofkey"><?php esc_html_e( 'Spoof Key', 'shibboleth' ); ?></label></th>
<td>
<input type="text" id="spoofkey" name="spoofkey" value="<?php echo esc_attr( $spoofkey ); ?>" size="50" <?php defined( 'SHIBBOLETH_SPOOF_KEY' ) && disabled( $spoofkey, SHIBBOLETH_SPOOF_KEY ); ?> /><br />
<p>
<?php
echo wp_kses_post(
__(
'For more details on setting a spoof key on the Shibboleth Service Provider, see <a href="https://wiki.shibboleth.net/confluence/display/SHIB2/NativeSPSpoofChecking">this wiki document</a>.
<br /><b>WARNING:</b> If you incorrectly set this option, you will force <b><i>ALL</i></b> attempts to authenticate with Shibboleth to fail.',
'shibboleth'
)
);
?>
</p>
</td>
</tr>
<tr id="attribute_access_fallback_row" <?php echo 'standard' === $attribute_access ? 'style="display:none;"' : ''; ?>>
<th scope="row"><?php esc_html_e( 'Enable Fallback Attribute Access', 'shibboleth' ); ?></th>
<td>
<input type="checkbox" id="attribute_access_fallback" name="attribute_access_fallback" <?php checked( (bool) $attribute_access_fallback ); ?> <?php defined( 'SHIBBOLETH_ATTRIBUTE_ACCESS_METHOD_FALLBACK' ) && disabled( $attribute_access_fallback, SHIBBOLETH_ATTRIBUTE_ACCESS_METHOD_FALLBACK ); ?> />
<label for="attribute_access_fallback"><?php esc_html_e( 'Allow the standard environment variables to be used as a fallback for attribute access.', 'shibboleth' ); ?></label>
<p>
<?php
esc_html_e(
'If set, this will fallback to standard environment variables when the selected
attribute access method fails.',
'shibboleth'
);
?>
</p>
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Default Login Method', 'shibboleth' ); ?></th>
<td>
<input type="checkbox" id="default_login" name="default_login" <?php checked( (bool) $default_login ); ?> <?php defined( 'SHIBBOLETH_DEFAULT_TO_SHIB_LOGIN' ) && disabled( $default_login, SHIBBOLETH_DEFAULT_TO_SHIB_LOGIN ); ?> />
<label for="default_login"><?php esc_html_e( 'Use Shibboleth as the default login method for users.', 'shibboleth' ); ?></label>
<p>
<?php
esc_html_e(
'If set, this will cause all standard WordPress login links to initiate Shibboleth
login instead of local WordPress authentication. Shibboleth login can always be
initiated from the WordPress login form by clicking the "Log in with Shibboleth" link.',
'shibboleth'
);
?>
</p>
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Automatic Login', 'shibboleth' ); ?></th>
<td>
<input type="checkbox" id="auto_login" name="auto_login" <?php checked( (bool) $auto_login ); ?> <?php defined( 'SHIBBOLETH_AUTO_LOGIN' ) && disabled( $auto_login, SHIBBOLETH_AUTO_LOGIN ); ?> />
<label for="auto_login"><?php esc_html_e( 'Use Shibboleth to auto-login users.', 'shibboleth' ); ?></label>
<p>
<?php
echo wp_kses_post(
__(
'If set, this option checks to see if a Shibboleth session exists on every page load, and,
if it does, forces a <code>wp_signon()</code> call and <code>wp_safe_redirect()</code> back to the <code>$_SERVER[\'REQUEST_URI\']</code>.',
'shibboleth'
)
);
?>
</p>
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Disable Local Authentication', 'shibboleth' ); ?></th>
<td>
<input type="checkbox" id="disable_local_auth" name="disable_local_auth" <?php checked( (bool) $disable_local_auth ); ?> <?php defined( 'SHIBBOLETH_DISABLE_LOCAL_AUTH' ) && disabled( $disable_local_auth, SHIBBOLETH_DISABLE_LOCAL_AUTH ); ?> />
<label for="disable_local_auth"><?php esc_html_e( 'Disables local WordPress authentication.', 'shibboleth' ); ?></label>
<p>
<?php
echo wp_kses_post(
__(
'<b>WARNING:</b> Disabling local authentication can potentially lock you out of WordPress if you have misconfigured the plugin or have a non-functional Shibboleth Service Provider.
Make sure that you are confident your configuration is functional before enabling this option.',
'shibboleth'
)
);
?>
</p>
</td>
</tr>
<?php
/**
* Action shibboleth_options_table
* Add your own Shibboleth options items to the Shibboleth options table.
* Note: This is in a <table> so add a <tr> with appropriate styling.
*
* @param $shib_headers array
* @param $shib_roles array
* @since 1.4
* @todo support new structure of table and tabs
*/
// do_action( 'shibboleth_options_table', $shib_headers, $shib_roles );.
?>
</table>
<br class="clear" />
<script type="text/javascript">
var attribute_access = document.getElementById("attribute_access");
attribute_access.onchange=AttributeAccessMethod;
function AttributeAccessMethod() {
var attribute_access = document.getElementById("attribute_access");
var selectedValue = attribute_access.options[attribute_access.selectedIndex].value;
if (selectedValue === "custom") {
document.getElementById("attribute_custom_access_row").style.display = "table-row";
document.getElementById("attribute_access_fallback_row").style.display = "table-row";
document.getElementById("spoofkey_row").style.display = "none";
} else if (selectedValue === "http") {
document.getElementById("attribute_custom_access_row").style.display = "none";
document.getElementById("attribute_access_fallback_row").style.display = "table-row";
document.getElementById("spoofkey_row").style.display = "table-row";
} else if (selectedValue === "standard") {
document.getElementById("attribute_custom_access_row").style.display = "none";
document.getElementById("attribute_access_fallback_row").style.display = "none";
document.getElementById("spoofkey_row").style.display = "none";
} else {
document.getElementById("attribute_custom_access_row").style.display = "none";
document.getElementById("attribute_access_fallback_row").style.display = "table-row";
document.getElementById("spoofkey_row").style.display = "none";
}
}
</script>
<?php
}
/**
* Shibboleth - IdP options tab.
*
* @since 2.5.0
*/
function shibboleth_options_idps() {
if ( isset( $_POST['submit'] ) ) {
check_admin_referer( 'shibboleth_update_options' );
$idp_options = shibboleth_getoption( 'shibboleth_idps', array(), true, false );
if ( ! defined( 'SHIBBOLETH_IDPS' ) ) {
if ( isset( $_POST['idps'] ) ) {
// phpcs:disable WordPress.Security.ValidatedSanitizedInput
$idps = wp_unslash( $_POST['idps'] );
// phpcs:enable WordPress.Security.ValidatedSanitizedInput
foreach ( $idps as $current_short_label => $idp ) {
$short_label = sanitize_text_field( $idp['short_label'] );
$current_short_label = sanitize_text_field( $current_short_label );
if ( ! empty( $current_short_label ) ) {
// If the short_label is being updated, then update the IdP for those users to match.
shibboleth_update_idp_users( $short_label, $current_short_label );
unset( $idp_options[ $current_short_label ] );
}
if ( empty( $short_label ) ) {
continue;
}
$idp_options[ $short_label ] = array(
'entity_id' => sanitize_text_field( $idp['entity_id'] ),
'password_change_url' => esc_url_raw( $idp['password_change_url'] ),
'password_reset_url' => esc_url_raw( $idp['password_reset_url'] ),
'button_text' => sanitize_text_field( $idp['button_text'] ),
);
}
update_site_option( 'shibboleth_idps', $idp_options );
}
}
shibboleth_options_updated();
}
$constant = false;
list( $idps, $from_constant ) = shibboleth_getoption( 'shibboleth_idps', array(), false, true );
$constant = $constant || $from_constant;
?>
<h2><?php esc_html_e( 'IdP Configuration', 'shibboleth' ); ?></h2>
<?php if ( $constant ) { ?>
<div class="notice notice-warning">
<p><?php echo wp_kses_post( __( '<strong>Note:</strong> Some options below are defined in the <code>wp-config.php</code> file as constants and cannot be modified from this page.', 'shibboleth' ) ); ?></p>
</div>
<?php
} else {
$idps['__new'] = array(
'entity_id' => '',
'password_change_url' => '',
'password_reset_url' => '',
'button_text' => '',
);
}
?>
<?php
foreach ( $idps as $idp_code => $idp ) {
if ( '__new' === $idp_code ) {
$idp_code_value = '';
} else {
$idp_code_value = $idp_code;
}
?>
<fieldset class="card tool-box">
<legend class="title">
<?php
if ( '' === $idp_code_value ) {
esc_html_e( 'Add new Identity Provider', 'shibboleth' );
} else {
esc_html_e( 'Identity Provider', 'shibboleth' );
echo ' "' . esc_html( $idp_code_value ) . '"';
}
?>
</legend>
<table class="form-table">
<tr>
<th scope="row"><label for="short_label_<?php echo esc_attr( $idp_code ); ?>"><?php esc_html_e( 'Short Label', 'shibboleth' ); ?></label></th>
<td>
<input type="text" id="short_label_<?php echo esc_attr( $idp_code ); ?>" name="idps[<?php echo esc_attr( $idp_code ); ?>][short_label]" value="<?php echo esc_attr( $idp_code_value ); ?>" size="50" <?php disabled( $constant ); ?> /><br />
<?php esc_html_e( 'A short label for the Identity Provider.', 'shibboleth' ); ?>
</td>
</tr>
<tr>
<th scope="row"><label for="entity_id_<?php echo esc_attr( $idp_code ); ?>"><?php esc_html_e( 'Entity ID', 'shibboleth' ); ?></label></th>
<td>
<input type="text" id="entity_id_<?php echo esc_attr( $idp_code ); ?>" name="idps[<?php echo esc_attr( $idp_code ); ?>][entity_id]" value="<?php echo esc_url( $idp['entity_id'] ); ?>" size="50" <?php disabled( $constant ); ?> /><br />
<?php esc_html_e( 'The entityID is the public URI for an Identity Provider.', 'shibboleth' ); ?>
</td>
</tr>
<tr>
<th scope="row"><label for="password_change_url_<?php echo esc_attr( $idp_code ); ?>"><?php esc_html_e( 'Password Change URL', 'shibboleth' ); ?></label></th>
<td>
<input type="text" id="password_change_url_<?php echo esc_attr( $idp_code ); ?>" name="idps[<?php echo esc_attr( $idp_code ); ?>][password_change_url]" value="<?php echo esc_url( $idp['password_change_url'] ); ?>" size="50" <?php disabled( $constant ); ?> /><br />
<?php esc_html_e( 'If this option is set, Shibboleth users will see a "change password" link on their profile page directing them to this URL.', 'shibboleth' ); ?>
</td>
</tr>
<tr>
<th scope="row"><label for="password_reset_url_<?php echo esc_attr( $idp_code ); ?>"><?php esc_html_e( 'Password Reset URL', 'shibboleth' ); ?></label></th>
<td>
<input type="text" id="password_reset_url_<?php echo esc_attr( $idp_code ); ?>" name="idps[<?php echo esc_attr( $idp_code ); ?>][password_reset_url]" value="<?php echo esc_url( $idp['password_reset_url'] ); ?>" size="50" <?php disabled( $constant ); ?> /><br />
<?php echo wp_kses_post( __( 'If this option is set, wp-login.php will send <b><i>ALL</i></b> users here to reset their password.', 'shibboleth' ) ); ?>
</td>
</tr>
<tr>
<th scope="row"><label for="button_text_<?php echo esc_attr( $idp_code ); ?>"><?php esc_html_e( 'Button Text', 'shibboleth' ); ?></label></th>
<td>
<input type="text" id="button_text_<?php echo esc_attr( $idp_code ); ?>" name="idps[<?php echo esc_attr( $idp_code ); ?>][button_text]" value="<?php echo esc_attr( $idp['button_text'] ); ?>" size="50" <?php disabled( $constant ); ?> /><br />
<p><?php echo wp_kses_post( __( 'Set the text of the button that appears on the <code>wp-login.php</code> page.', 'shibboleth' ) ); ?></p>
</td>
</tr>
</table>
</fieldset>
<?php
} // Close IdP foreach
}
/**
* Shibboleth - User options tab.
*
* @since 2.4.3
*/
function shibboleth_options_user() {
if ( isset( $_POST['submit'] ) ) {
check_admin_referer( 'shibboleth_update_options' );
if ( ! defined( 'SHIBBOLETH_HEADERS' ) && isset( $_POST['headers'] ) ) {
$shib_headers = (array) get_site_option( 'shibboleth_headers' );
$updated_headers = array();
foreach ( shibboleth_header_fields() as $header_field => $header_field_label ) {
if ( isset( $_POST['headers'][ $header_field ] ) ) {
$updated_headers[ $header_field ] = array_map( 'sanitize_text_field', wp_unslash( $_POST['headers'][ $header_field ] ) );
}
}
$shib_headers = array_merge( $shib_headers, $updated_headers );
/**
* Filter shibboleth_form_submit_headers
*
* @param $shib_headers array
* @since 1.4
* Hint: access $_POST within the filter.
*/
$shib_headers = apply_filters( 'shibboleth_form_submit_headers', $shib_headers );
update_site_option( 'shibboleth_headers', $shib_headers );
}
if ( ! defined( 'SHIBBOLETH_CREATE_ACCOUNTS' ) ) {
update_site_option( 'shibboleth_create_accounts', ! empty( $_POST['create_accounts'] ) );
}
if ( ! defined( 'SHIBBOLETH_AUTO_COMBINE_ACCOUNTS' ) && isset( $_POST['auto_combine_accounts'] ) ) {
update_site_option( 'shibboleth_auto_combine_accounts', sanitize_text_field( wp_unslash( $_POST['auto_combine_accounts'] ) ) );
}
if ( ! defined( 'SHIBBOLETH_MANUALLY_COMBINE_ACCOUNTS' ) && isset( $_POST['manually_combine_accounts'] ) ) {
update_site_option( 'shibboleth_manually_combine_accounts', sanitize_text_field( wp_unslash( $_POST['manually_combine_accounts'] ) ) );
}
shibboleth_options_updated();
}
$constant = false;
list( $shib_headers, $shib_headers_constant ) = shibboleth_getoption( 'shibboleth_headers', array(), true, true );
$constant = $constant || $shib_headers_constant;
list( $create_accounts, $from_constant ) = shibboleth_getoption( 'shibboleth_create_accounts', false, false, true );
$constant = $constant || $from_constant;
list( $auto_combine_accounts, $from_constant ) = shibboleth_getoption( 'shibboleth_auto_combine_accounts', false, false, true );
$constant = $constant || $from_constant;
list( $manually_combine_accounts, $from_constant ) = shibboleth_getoption( 'shibboleth_manually_combine_accounts', false, false, true );
$constant = $constant || $from_constant;
?>
<h2><?php esc_html_e( 'User Configuration', 'shibboleth' ); ?></h2>
<?php if ( $constant ) { ?>
<div class="notice notice-warning">
<p><?php echo wp_kses_post( __( '<strong>Note:</strong> Some options below are defined in the <code>wp-config.php</code> file as constants and cannot be modified from this page.', 'shibboleth' ) ); ?></p>
</div>
<?php } ?>
<h3><?php esc_html_e( 'User Profile Data', 'shibboleth' ); ?></h3>
<p>
<?php
echo wp_kses_post(
__(
'Define the Shibboleth headers which should be mapped to each user profile attribute. These
header names are configured in <code>attribute-map.xml</code> (for Shibboleth 2.x) or
<code>AAP.xml</code> (for Shibboleth 1.x).',
'shibboleth'
)
);
?>
</p>
<p>
<?php esc_html_e( 'Wiki Documentation', 'shibboleth' ); ?>:
<a href="https://shibboleth.atlassian.net/wiki/spaces/SP3/pages/2070414225/XMLAttributeExtractorExamples" target="_blank">Shibboleth SP v3</a> |
<a href="https://shibboleth.atlassian.net/wiki/spaces/SHIB2/pages/2577072493/NativeSPAddAttribute" target="_blank">Shibboleth SP v2</a>
</p>
<table class="form-table optiontable editform" cellspacing="2" cellpadding="5">
<?php
foreach ( shibboleth_header_fields() as $header_field => $header_field_label ) {
$header_field_id = 'shibboleth_' . $header_field;
$header_field_managed_id = 'shibboleth_managed_' . $header_field;
$header_field_value = isset( $shib_headers[ $header_field ]['name'] ) ? $shib_headers[ $header_field ]['name'] : '';
$header_field_managed = ! empty( $shib_headers[ $header_field ]['managed'] );
$header_field_managed_disabled = $shib_headers_constant;
// Username field is always managed and disabled.
if ( 'username' === $header_field ) {
$header_field_managed = true;
$header_field_managed_disabled = true;
}
?>
<tr valign="top">
<th scope="row">
<label for="<?php echo esc_attr( $header_field_id ); ?>"><?php echo esc_html( $header_field_label ); ?></label>
</th>
<td>
<input type="text" id="<?php echo esc_attr( $header_field_id ); ?>" name="headers[<?php echo esc_attr( $header_field ); ?>][name]" value="<?php echo esc_attr( $header_field_value ); ?>" <?php disabled( $shib_headers_constant ); ?>/>
</td>
<td width="60%">
<input type="checkbox" id="<?php echo esc_attr( $header_field_managed_id ); ?>" name="headers[<?php echo esc_attr( $header_field ); ?>][managed]" <?php checked( $header_field_managed ); ?><?php disabled( $header_field_managed_disabled ); ?> /> <label for="<?php echo esc_attr( $header_field_managed_id ); ?>"><?php esc_html_e( 'Managed', 'shibboleth' ); ?></label>
</td>
</tr>
<?php
}
?>
</table>
<p>
<?php
echo wp_kses_post(
__(
'<em>Managed</em> profile fields are updated each time the user logs in using the current
data provided by Shibboleth. Additionally, users will be prevented from manually updating these
fields from within WordPress. Note that Shibboleth data is always used to populate the user
profile during initial account creation.',
'shibboleth'
)
);
?>
</p>
<table class="form-table">
<tr valign="top">
<th scope="row"><?php esc_html_e( 'Automatically Create Accounts', 'shibboleth' ); ?></th>
<td>
<input type="checkbox" id="create_accounts" name="create_accounts" <?php checked( (bool) $create_accounts ); ?> <?php defined( 'SHIBBOLETH_CREATE_ACCOUNTS' ) && disabled( $create_accounts, SHIBBOLETH_CREATE_ACCOUNTS ); ?> />
<label for="create_accounts"><?php esc_html_e( 'Automatically create new users if they do not exist in the WordPress database.', 'shibboleth' ); ?></label>
<p>
<?php
echo wp_kses_post(
__(
'Automatically created users will be provisioned with the role that they map to, as defined on the <a href="?page=shibboleth-options&tab=authorization">Authorization</a> tab.
If a user does not match any mappings, they will be placed into the role selected under "Default Role" on the <a href="?page=shibboleth-options&tab=authorization">Authorization</a> tab.',
'shibboleth'
)
);
?>
</p>
</td>
</tr>
<tr>
<th scope="row"><label for="auto_combine_accounts"><?php esc_html_e( 'Combine Local and Shibboleth Accounts', 'shibboleth' ); ?></label></th>
<td>
<select id="auto_combine_accounts" name="auto_combine_accounts" <?php defined( 'SHIBBOLETH_AUTO_COMBINE_ACCOUNTS' ) && disabled( $auto_combine_accounts, SHIBBOLETH_AUTO_COMBINE_ACCOUNTS ); ?>>
<option value="prevent" <?php selected( $auto_combine_accounts, 'disallow' ); ?>>Prevent Automatic Account Merging</option>
<option value="allow" <?php selected( $auto_combine_accounts, 'allow' ); ?>>Allow Automatic Account Merging</option>
<option value="bypass" <?php selected( $auto_combine_accounts, 'bypass' ); ?>>Allow Automatic Account Merging (Bypass Username Management)</option>
</select>
<p>
<?php
echo wp_kses_post(
__(
'By default, users will receive an error if they log in via Shibboleth and have a pre-existing local WordPress user account that has not previously been linked with Shibboleth. <br /><br />
<code>Prevent Automatic Account Merging</code>: This option prevents automatic merging of accounts.<br />
<code>Allow Automatic Account Merging</code>: This option prevents users from experiencing an error if they share a username with both a local and a Shibboleth account.
This option <b>WILL NOT</b> prevent an error if another user shares the email passed via Shibboleth attributes.<br />
<code>Allow Automatic Account Merging (Bypass Username Management)</code>: Occasionally, users have pre-existing local WordPress user accounts with a different username than that provided via Shibboleth attributes.
This option prevents users from experiencing an error in this case by bypassing the username management requirement.',
'shibboleth'
)
);
?>
</p>
</td>
</tr>
<tr>
<th scope="row"><label for="manually_combine_accounts"><?php esc_html_e( 'Manual Account Merging', 'shibboleth' ); ?></label></th>
<td>
<select id="manually_combine_accounts" name="manually_combine_accounts" <?php defined( 'SHIBBOLETH_MANUALLY_COMBINE_ACCOUNTS' ) && disabled( $manually_combine_accounts, SHIBBOLETH_MANUALLY_COMBINE_ACCOUNTS ); ?>>
<option value="prevent" <?php selected( $manually_combine_accounts, 'disallow' ); ?>>Prevent Manual Account Merging</option>
<option value="allow" <?php selected( $manually_combine_accounts, 'allow' ); ?>>Allow Manual Account Merging</option>
<option value="bypass" <?php selected( $manually_combine_accounts, 'bypass' ); ?>>Allow Manual Account Merging (Bypass Username Management)</option>
</select>
<p>
<?php
echo wp_kses_post(
__(
'This option offers users the ability to manually link their local accounts to Shibboleth from their profile page.<br /><br />
<code>Prevent Manual Account Merging</code>: This option does not allow users to manually link accounts.<br />
<code>Allow Manual Account Merging</code>: This option allows users to manually link accounts if they share a username with both a local and a Shibboleth account.
This option <b>WILL NOT</b> prevent an error if another user shares the email passed via Shibboleth attributes.<br />
<code>Allow Manual Account Merging (Bypass Username Management)</code>: Occasionally, users have pre-existing local WordPress user accounts with a different username than that provided via Shibboleth attributes.
This option allows users to manually link accounts by bypassing the username management requirement.',
'shibboleth'
)
);
?>
</p>
</td>
</tr>
</table>
<?php
}
/**
* Shibboleth - Authorization options tab.
*
* @since 2.4.3
*/
function shibboleth_options_authorization() {
global $wp_roles;
if ( isset( $_POST['submit'] ) ) {
check_admin_referer( 'shibboleth_update_options' );
if ( ! defined( 'SHIBBOLETH_ROLES' ) && isset( $_POST['shibboleth_roles'] ) ) {
$shib_roles = (array) get_site_option( 'shibboleth_roles' );
$updated_roles = array();
foreach ( $wp_roles->role_names as $key => $name ) {
if ( isset( $_POST['shibboleth_roles'][ $key ] ) ) {
$updated_roles[ $key ] = array_map( 'sanitize_text_field', wp_unslash( $_POST['shibboleth_roles'][ $key ] ) );
}
}
$shib_roles = array_merge( $shib_roles, $updated_roles );
/**
* Filter shibboleth_form_submit_roles
*
* @param $shib_roles array
* @since 1.4
* Hint: access $_POST within the filter.
*/
$shib_roles = apply_filters( 'shibboleth_form_submit_roles', $shib_roles );
update_site_option( 'shibboleth_roles', $shib_roles );
}
if ( ! defined( 'SHIBBOLETH_DEFAULT_ROLE' ) && isset( $_POST['default_role'] ) ) {
update_site_option( 'shibboleth_default_role', sanitize_text_field( wp_unslash( $_POST['default_role'] ) ) );
}
if ( ! defined( 'SHIBBOLETH_UPDATE_ROLES' ) ) {
update_site_option( 'shibboleth_update_roles', ! empty( $_POST['update_roles'] ) );
}
shibboleth_options_updated();
}
$constant = false;
list( $shib_roles, $shib_roles_constant ) = shibboleth_getoption( 'shibboleth_roles', array(), true, true );
$constant = $constant || $shib_roles_constant;
list( $default_role, $from_constant ) = shibboleth_getoption( 'shibboleth_default_role', false, false, true );
$constant = $constant || $from_constant;
list( $update_roles, $from_constant ) = shibboleth_getoption( 'shibboleth_update_roles', false, false, true );
$constant = $constant || $from_constant;
?>
<h2><?php esc_html_e( 'User Role Mappings', 'shibboleth' ); ?></h2>
<?php if ( $constant ) { ?>
<div class="notice notice-warning">
<p><?php echo wp_kses_post( __( '<strong>Note:</strong> Some options below are defined in the <code>wp-config.php</code> file as constants and cannot be modified from this page.', 'shibboleth' ) ); ?></p>
</div>
<?php
}
/**
* Filter shibboleth_role_mapping_override
* Return true to override the default user role mapping form
*
* @param boolean - default value false
* @return boolean - true if override
* @since 1.4
*
* Use in conjunction with shibboleth_role_mapping_form action below
*/
if ( apply_filters( 'shibboleth_role_mapping_override', false ) === false ) {
?>
<p>
<?php
esc_html_e(
'Users can be placed into one of WordPress\'s internal roles based on any
attribute. For example, you could define a special eduPersonEntitlement value
that designates the user as a WordPress Administrator. Or you could automatically
place all users with an eduPersonAffiliation of "faculty" in the Author role.',
'shibboleth'
);
?>
</p>
<p>
<?php
echo wp_kses_post(
__(
'<strong>Current Limitations:</strong> While WordPress supports users having
multiple roles, the Shibboleth plugin will only place the user in the highest ranking
role. Only a single header/value pair is supported for each user role. This may be
expanded in the future to support multiple header/value pairs or regular expression
values. In the meantime, you can use the <em>shibboleth_roles</em> and
<em>shibboleth_user_role</em> WordPress filters to provide your own logic for assigning
user roles.',
'shibboleth'
)
);
?>
</p>
<style type="text/css">
#role_mappings { padding: 0; }
#role_mappings thead th { padding: 5px 10px; }
#role_mappings td, #role_mappings th { border-bottom: 0px; }
</style>
<h3><?php esc_html_e( 'Role Mappings', 'shibboleth' ); ?></h3>
<table id="role_mappings" class="form-table optiontable editform" cellspacing="2" cellpadding="5" width="100%">
<col width="10%"></col>
<col></col>
<col></col>
<thead>
<tr>
<th scope="col"><?php esc_html_e( 'Role' ); ?></th>
<th scope="col"><?php esc_html_e( 'Header Name', 'shibboleth' ); ?></th>
<th scope="col"><?php esc_html_e( 'Header Value', 'shibboleth' ); ?></th>
</tr>
</thead>
<tbody>
<?php
foreach ( $wp_roles->role_names as $key => $name ) {
$header = '';
if ( isset( $shib_roles[ $key ]['header'] ) ) {
$header = $shib_roles[ $key ]['header'];
}
$value = '';
if ( isset( $shib_roles[ $key ]['value'] ) ) {
$value = $shib_roles[ $key ]['value'];
}
echo '
<tr valign="top">
<th scope="row">' . esc_html( $name ) . '</th>
<td><input type="text" id="role_' . esc_attr( $key ) . '_header" name="shibboleth_roles[' . esc_attr( $key ) . '][header]" value="' . esc_attr( $header ) . '" style="width: 100%" ' . disabled( $shib_roles_constant, true, false ) . '/></td>
<td><input type="text" id="role_' . esc_attr( $key ) . '_value" name="shibboleth_roles[' . esc_attr( $key ) . '][value]" value="' . esc_attr( $value ) . '" style="width: 100%" ' . disabled( $shib_roles_constant, true, false ) . '/></td>
</tr>';
}
?>
</tbody>
</table>
<table class="form-table optiontable editform" cellspacing="2" cellpadding="5" width="100%">
<tr>
<th scope="row"><label for="default_role"><?php esc_html_e( 'Default Role', 'shibboleth' ); ?></label></th>
<td>
<select id="default_role" name="default_role" <?php defined( 'SHIBBOLETH_DEFAULT_ROLE' ) && disabled( $default_role, SHIBBOLETH_DEFAULT_ROLE ); ?>>
<option value=""><?php esc_html_e( '(no role)', 'shibboleth' ); ?></option>
<option value="_no_account" <?php selected( $default_role, '_no_account' ); ?>><?php esc_html_e( '(skip \'no role\' account creation)', 'shibboleth' ); ?></option>
<?php
foreach ( $wp_roles->role_names as $key => $name ) {
echo '<option value="' . esc_attr( $key ) . '"' . selected( $default_role, $key ) . '>' . esc_html( $name ) . '</option>';
}
?>
</select>
<p>
<?php
esc_html_e(
'If a user does not map into any of the roles above, they will
be placed into the default role. If there is no default role, the
user will not be assigned a role when creating an account with
Shibboleth. If "(skip \'no role\' account creation)" is selected, the user
will not be able to create an account with Shibboleth.',
'shibboleth'
);
?>
</p>
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Update User Roles', 'shibboleth' ); ?></th>
<td>
<input type="checkbox" id="update_roles" name="update_roles" <?php checked( (bool) $update_roles ); ?> <?php defined( 'SHIBBOLETH_UPDATE_ROLES' ) && disabled( $update_roles, SHIBBOLETH_UPDATE_ROLES ); ?>
/>
<label for="update_roles"><?php esc_html_e( 'Use Shibboleth data to update user role mappings each time the user logs in.', 'shibboleth' ); ?></label>
<p>
<?php
echo wp_kses_post(
__(
'Be aware that if you use this option, you should <strong>not</strong> update user roles manually,
since they will be overwritten from Shibboleth the next time the user logs in. Note that Shibboleth data
is always used to populate the initial user role during account creation.',
'shibboleth'
)
);
?>
</p>
</td>
</tr>
</table>
<?php
} else {
/**
* Action shibboleth_role_mapping_form
* Roll your own custom Shibboleth role mapping admin UI
*
* @param $shib_headers array
* @param $shib_roles array
* @since 1.4
*
* Use in conjunction with shibboleth_role_mapping_override filter
*/
do_action( 'shibboleth_role_mapping_form', $shib_headers, $shib_roles );
} // if ( form override )
}
/**
* Shibboleth - Logging options tab.
*
* @since 2.4.3
*/
function shibboleth_options_logging() {
if ( isset( $_POST['submit'] ) ) {
check_admin_referer( 'shibboleth_update_options' );
if ( ! defined( 'SHIBBOLETH_LOGGING' ) ) {
$shibboleth_logging = array();
if ( isset( $_POST['logging'] ) ) {
$shibboleth_logging = array_map( 'sanitize_text_field', wp_unslash( $_POST['logging'] ) );
}
update_site_option( 'shibboleth_logging', $shibboleth_logging );
}
shibboleth_options_updated();
}
$constant = false;
list( $shib_logging, $shib_logging_constant ) = shibboleth_getoption( 'shibboleth_logging', array(), true, true );
$constant = $constant || $shib_logging_constant;
?>
<h2><?php esc_html_e( 'Logging Configuration', 'shibboleth' ); ?></h2>
<?php if ( $constant ) { ?>
<div class="notice notice-warning">
<p><?php echo wp_kses_post( __( '<strong>Note:</strong> Some options below are defined in the <code>wp-config.php</code> file as constants and cannot be modified from this page.', 'shibboleth' ) ); ?></p>
</div>
<?php } ?>
<table class="form-table">
<tr>
<th scope="row"><?php esc_html_e( 'Log Authentication Attempts', 'shibboleth' ); ?></th>
<td>
<input type="checkbox" id="log_auth" name="logging[]" value="auth" <?php checked( in_array( 'auth', $shib_logging, true ) ); ?> <?php defined( $shib_logging_constant ) && disabled( $shib_logging_constant, true, false ); ?> />
<label for="log_auth"><?php esc_html_e( 'Log when a user attempts to authenticate using Shibboleth.', 'shibboleth' ); ?></label>
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Log Account Merges', 'shibboleth' ); ?></th>
<td>
<input type="checkbox" id="log_account_merge" name="logging[]" value="account_merge" <?php checked( in_array( 'account_merge', $shib_logging, true ) ); ?> <?php defined( $shib_logging_constant ) && disabled( $shib_logging_constant, true, false ); ?> />
<label for="log_account_merge"><?php esc_html_e( 'Log when a user attempts to merge their account, either manually or automatically.', 'shibboleth' ); ?></label>
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Log Account Creation', 'shibboleth' ); ?></th>
<td>
<input type="checkbox" id="log_account_create" name="logging[]" value="account_create" <?php checked( in_array( 'account_create', $shib_logging, true ) ); ?> <?php defined( $shib_logging_constant ) && disabled( $shib_logging_constant, true, false ); ?> />
<label for="log_account_create"><?php esc_html_e( 'Log when new accounts are created.', 'shibboleth' ); ?></label>
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Log Role Update', 'shibboleth' ); ?></th>
<td>
<input type="checkbox" id="log_role_update" name="logging[]" value="role_update" <?php checked( in_array( 'role_update', $shib_logging, true ) ); ?> <?php defined( $shib_logging_constant ) && disabled( $shib_logging_constant, true, false ); ?> />
<label for="log_role_update"><?php esc_html_e( 'Log when the plugin updates a user\'s role.', 'shibboleth' ); ?></label>
</td>
</tr>
</table>
<?php
}
/**
* WordPress options page to configure the Shibboleth plugin.
*
* @since ?
*/
function shibboleth_options_page() {
$tab = isset( $_GET['tab'] ) ? sanitize_key( wp_unslash( $_GET['tab'] ) ) : 'general';
?>
<div class="wrap">
<form method="post">
<h1><?php esc_html_e( 'Shibboleth Options', 'shibboleth' ); ?></h1>
<?php
shibboleth_admin_tabs( $tab );
switch ( $tab ) {
case 'general':
shibboleth_options_general();
break;
case 'idps':