You appear to be a bot. Output may be restricted
Description
Display the oik user admin pageWe display a set of checkboxes reflecting the fields that could be displayed on the user profile We allow user_contactmethods fields to be turned off individually For other fields we have less control
Usage
oik_user_admin_page();
Parameters
Returns
voidSource
File name: oik-user/admin/oik-user.phpLines:
1 to 9 of 9
function oik_user_admin_page() { remove_filter( "user_contactmethods", "oiku_user_contactmethods_selected", 20, 1 ); remove_filter( "show_user_profile", "oiku_show_user_profile_selected", 9, 1 ); oik_menu_header( "user admin", "w60pc" ); oik_box( null, null, "Check <b>Contact Info</b> fields to display on User Profile", "oik_user_profile_fields" ); oik_box( null, null, "Check hooks to run for the 'show_user_profile' action", "oik_user_profile_filters" ); oik_menu_footer(); bw_flush(); }View on GitHub