Changeset 13928 for trunk/src/bp-core/admin/bp-core-admin-functions.php
- Timestamp:
- 06/13/2024 08:04:12 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/admin/bp-core-admin-functions.php
r13927 r13928 804 804 break; 805 805 806 case 'edit-bp_group_type': 807 // Help tab. 808 $screen->add_help_tab( 809 array( 810 'id' => 'bp-group-types-overview', 811 'title' => __( 'Overview', 'buddypress' ), 812 'content' => bp_core_add_contextual_help_content( 'bp-group-types-overview' ), 813 ) 814 ); 815 816 $documentation_link = sprintf( 817 '<a href="%1$s">%2$s</a>', 818 esc_url( 'https://github.com/buddypress/buddypress/blob/master/docs/user/administration/groups/group-types.md' ), 819 esc_html__( 'Managing Group Types', 'buddypress' ) 820 ); 821 break; 822 806 823 case 'edit-bp-email': 807 824 // Help tab. … … 876 893 add_action( 'load-users_page_bp-profile-setup', 'bp_core_add_contextual_help' ); 877 894 add_action( 'bp_admin_load_bp_member_type', 'bp_core_add_contextual_help' ); 895 add_action( 'bp_admin_load_bp_group_type', 'bp_core_add_contextual_help' ); 878 896 add_action( 'admin_head-tools_page_bp-tools', 'bp_core_add_contextual_help' ); 879 897 … … 911 929 case 'bp-member-types-overview': 912 930 $retval = __( 'Member Types in BuddyPress provide a powerful way to classify users within your community. By defining various member types, such as "Students", "Teachers", or "Alumni", you can create a more organized and tailored community environment. This feature is especially useful for communities with diverse user groups, allowing customized interactions, content access, and privileges.', 'buddypress' ); 931 break; 932 933 case 'bp-group-types-overview': 934 $retval = __( 'The Group Types feature categorizes community groups into distinct categories, enhancing the management and personalization of group experiences within the community.', 'buddypress' ); 913 935 break; 914 936
Note: See TracChangeset
for help on using the changeset viewer.