2, 'max' => 2, ) ); get_current_screen()->add_help_tab( array( 'id' => 'bp-group-edit-overview', 'title' => __( 'Overview', 'buddypress' ), 'content' => '

' . __( 'This page is a convenient way to edit the details associated with one of your groups.', 'buddypress' ) . '

' . '

' . __( 'The Name and Description box is fixed in place, but you can reposition all the other boxes using drag and drop, and can minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to hide or unhide, or to choose a 1- or 2-column layout for this screen.', 'buddypress' ) . '

' ) ); // Help panel - sidebar links. get_current_screen()->set_help_sidebar( '

' . __( 'For more information:', 'buddypress' ) . '

' . '

' . __( 'Support Forums', 'buddypress' ) . '

' ); // Register metaboxes for the edit screen. add_meta_box( 'submitdiv', _x( 'Save', 'group admin edit screen', 'buddypress' ), 'bp_groups_admin_edit_metabox_status', get_current_screen()->id, 'side', 'high' ); add_meta_box( 'bp_group_settings', _x( 'Settings', 'group admin edit screen', 'buddypress' ), 'bp_groups_admin_edit_metabox_settings', get_current_screen()->id, 'side', 'core' ); add_meta_box( 'bp_group_add_members', _x( 'Add New Members', 'group admin edit screen', 'buddypress' ), 'bp_groups_admin_edit_metabox_add_new_members', get_current_screen()->id, 'normal', 'core' ); add_meta_box( 'bp_group_members', _x( 'Manage Members', 'group admin edit screen', 'buddypress' ), 'bp_groups_admin_edit_metabox_members', get_current_screen()->id, 'normal', 'core' ); // Group Type metabox. Only added if group types have been registered. $group_types = bp_groups_get_group_types(); if ( ! empty( $group_types ) ) { add_meta_box( 'bp_groups_admin_group_type', _x( 'Group Type', 'groups admin edit screen', 'buddypress' ), 'bp_groups_admin_edit_metabox_group_type', get_current_screen()->id, 'side', 'core' ); } /** * Fires after the registration of all of the default group meta boxes. * * @since 1.7.0 */ do_action( 'bp_groups_admin_meta_boxes' ); // Enqueue JavaScript files. wp_enqueue_script( 'postbox' ); wp_enqueue_script( 'dashboard' ); // Index screen. } else { // Create the Groups screen list table. $bp_groups_list_table = new BP_Groups_List_Table(); // The per_page screen option. add_screen_option( 'per_page', array( 'label' => _x( 'Groups', 'Groups per page (screen options)', 'buddypress' )) ); // Help panel - overview text. get_current_screen()->add_help_tab( array( 'id' => 'bp-groups-overview', 'title' => __( 'Overview', 'buddypress' ), 'content' => '

' . __( 'You can manage groups much like you can manage comments and other content. This screen is customizable in the same ways as other management screens, and you can act on groups by using the on-hover action links or the Bulk Actions.', 'buddypress' ) . '

', ) ); get_current_screen()->add_help_tab( array( 'id' => 'bp-groups-overview-actions', 'title' => __( 'Group Actions', 'buddypress' ), 'content' => '

' . __( 'Clicking "Visit" will take you to the group’s public page. Use this link to see what the group looks like on the front end of your site.', 'buddypress' ) . '

' . '

' . __( 'Clicking "Edit" will take you to a Dashboard panel where you can manage various details about the group, such as its name and description, its members, and other settings.', 'buddypress' ) . '

' . '

' . __( 'If you click "Delete" under a specific group, or select a number of groups and then choose Delete from the Bulk Actions menu, you will be led to a page where you’ll be asked to confirm the permanent deletion of the group(s).', 'buddypress' ) . '

', ) ); // Help panel - sidebar links. get_current_screen()->set_help_sidebar( '

' . __( 'For more information:', 'buddypress' ) . '

' . '

' . __( 'Support Forums', 'buddypress' ) . '

' ); // Add accessible hidden heading and text for Groups screen pagination. get_current_screen()->set_screen_reader_content( array( /* translators: accessibility text */ 'heading_pagination' => __( 'Groups list navigation', 'buddypress' ), ) ); } $bp = buddypress(); // Enqueue CSS and JavaScript. wp_enqueue_script( 'bp_groups_admin_js', $bp->plugin_url . "bp-groups/admin/js/admin{$min}.js", array( 'jquery', 'wp-ajax-response', 'jquery-ui-autocomplete' ), bp_get_version(), true ); wp_localize_script( 'bp_groups_admin_js', 'BP_Group_Admin', array( 'add_member_placeholder' => __( 'Start typing a username to add a new member.', 'buddypress' ), 'warn_on_leave' => __( 'If you leave this page, you will lose any unsaved changes you have made to the group.', 'buddypress' ), ) ); wp_enqueue_style( 'bp_groups_admin_css', $bp->plugin_url . "bp-groups/admin/css/admin{$min}.css", array(), bp_get_version() ); wp_style_add_data( 'bp_groups_admin_css', 'rtl', 'replace' ); if ( $min ) { wp_style_add_data( 'bp_groups_admin_css', 'suffix', $min ); } if ( $doaction && 'save' == $doaction ) { // Get group ID. $group_id = isset( $_REQUEST['gid'] ) ? (int) $_REQUEST['gid'] : ''; $redirect_to = add_query_arg( array( 'gid' => (int) $group_id, 'action' => 'edit' ), $redirect_to ); // Check this is a valid form submission. check_admin_referer( 'edit-group_' . $group_id ); // Get the group from the database. $group = groups_get_group( $group_id ); // If the group doesn't exist, just redirect back to the index. if ( empty( $group->slug ) ) { wp_redirect( $redirect_to ); exit; } // Check the form for the updated properties. // Store errors. $error = 0; $success_new = $error_new = $success_modified = $error_modified = array(); // Name, description and slug must not be empty. if ( empty( $_POST['bp-groups-name'] ) ) { $error = $error - 1; } if ( empty( $_POST['bp-groups-description'] ) ) { $error = $error - 2; } if ( empty( $_POST['bp-groups-slug'] ) ) { $error = $error - 4; } /* * Group name, slug, and description are handled with * groups_edit_base_group_details(). */ if ( ! $error && ! groups_edit_base_group_details( array( 'group_id' => $group_id, 'name' => $_POST['bp-groups-name'], 'slug' => $_POST['bp-groups-slug'], 'description' => $_POST['bp-groups-description'], 'notify_members' => false, ) ) ) { $error = $group_id; } // Enable discussion forum. $enable_forum = ( isset( $_POST['group-show-forum'] ) ) ? 1 : 0; /** * Filters the allowed status values for the group. * * @since 1.0.2 * * @param array $value Array of allowed group statuses. */ $allowed_status = apply_filters( 'groups_allowed_status', array( 'public', 'private', 'hidden' ) ); $status = ( in_array( $_POST['group-status'], (array) $allowed_status ) ) ? $_POST['group-status'] : 'public'; /** * Filters the allowed invite status values for the group. * * @since 1.5.0 * * @param array $value Array of allowed invite statuses. */ $allowed_invite_status = apply_filters( 'groups_allowed_invite_status', array( 'members', 'mods', 'admins' ) ); $invite_status = in_array( $_POST['group-invite-status'], (array) $allowed_invite_status ) ? $_POST['group-invite-status'] : 'members'; if ( !groups_edit_group_settings( $group_id, $enable_forum, $status, $invite_status ) ) { $error = $group_id; } // Process new members. $user_names = array(); if ( ! empty( $_POST['bp-groups-new-members'] ) ) { $user_names = array_merge( $user_names, explode( ',', $_POST['bp-groups-new-members'] ) ); } if ( ! empty( $user_names ) ) { foreach( array_values( $user_names ) as $user_name ) { $un = trim( $user_name ); // Make sure the user exists before attempting // to add to the group. $user = get_user_by( 'slug', $un ); if ( empty( $user ) ) { $error_new[] = $un; } else { if ( ! groups_join_group( $group_id, $user->ID ) ) { $error_new[] = $un; } else { $success_new[] = $un; } } } } // Process member role changes. if ( ! empty( $_POST['bp-groups-role'] ) && ! empty( $_POST['bp-groups-existing-role'] ) ) { // Before processing anything, make sure you're not // attempting to remove the all user admins. $admin_count = 0; foreach ( (array) $_POST['bp-groups-role'] as $new_role ) { if ( 'admin' == $new_role ) { $admin_count++; break; } } if ( ! $admin_count ) { $redirect_to = add_query_arg( 'no_admins', 1, $redirect_to ); $error = $group_id; } else { // Process only those users who have had their roles changed. foreach ( (array) $_POST['bp-groups-role'] as $user_id => $new_role ) { $user_id = (int) $user_id; $existing_role = isset( $_POST['bp-groups-existing-role'][$user_id] ) ? $_POST['bp-groups-existing-role'][$user_id] : ''; if ( $existing_role != $new_role ) { $result = false; switch ( $new_role ) { case 'mod' : // Admin to mod is a demotion. Demote to // member, then fall through. if ( 'admin' == $existing_role ) { groups_demote_member( $user_id, $group_id ); } case 'admin' : // If the user was banned, we must // unban first. if ( 'banned' == $existing_role ) { groups_unban_member( $user_id, $group_id ); } // At this point, each existing_role // is a member, so promote. $result = groups_promote_member( $user_id, $group_id, $new_role ); break; case 'member' : if ( 'admin' == $existing_role || 'mod' == $existing_role ) { $result = groups_demote_member( $user_id, $group_id ); } elseif ( 'banned' == $existing_role ) { $result = groups_unban_member( $user_id, $group_id ); } break; case 'banned' : $result = groups_ban_member( $user_id, $group_id ); break; case 'remove' : $result = groups_remove_member( $user_id, $group_id ); break; } // Store the success or failure. if ( $result ) { $success_modified[] = $user_id; } else { $error_modified[] = $user_id; } } } } } /** * Fires before redirect so plugins can do something first on save action. * * @since 1.6.0 * * @param int $group_id ID of the group being edited. */ do_action( 'bp_group_admin_edit_after', $group_id ); // Create the redirect URL. if ( $error ) { // This means there was an error updating group details. $redirect_to = add_query_arg( 'error', (int) $error, $redirect_to ); } else { // Group details were update successfully. $redirect_to = add_query_arg( 'updated', 1, $redirect_to ); } if ( !empty( $success_new ) ) { $success_new = implode( ',', array_filter( $success_new, 'urlencode' ) ); $redirect_to = add_query_arg( 'success_new', $success_new, $redirect_to ); } if ( !empty( $error_new ) ) { $error_new = implode( ',', array_filter( $error_new, 'urlencode' ) ); $redirect_to = add_query_arg( 'error_new', $error_new, $redirect_to ); } if ( !empty( $success_modified ) ) { $success_modified = implode( ',', array_filter( $success_modified, 'urlencode' ) ); $redirect_to = add_query_arg( 'success_modified', $success_modified, $redirect_to ); } if ( !empty( $error_modified ) ) { $error_modified = implode( ',', array_filter( $error_modified, 'urlencode' ) ); $redirect_to = add_query_arg( 'error_modified', $error_modified, $redirect_to ); } /** * Filters the URL to redirect to after successfully editing a group. * * @since 1.7.0 * * @param string $redirect_to URL to redirect user to. */ wp_redirect( apply_filters( 'bp_group_admin_edit_redirect', $redirect_to ) ); exit; // If a referrer and a nonce is supplied, but no action, redirect back. } elseif ( ! empty( $_GET['_wp_http_referer'] ) ) { wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), stripslashes( $_SERVER['REQUEST_URI'] ) ) ); exit; } } /** * Handle save/update of screen options for the Groups component admin screen. * * @since 1.7.0 * * @param string $value Will always be false unless another plugin filters it first. * @param string $option Screen option name. * @param string $new_value Screen option form value. * @return string|int Option value. False to abandon update. */ function bp_groups_admin_screen_options( $value, $option, $new_value ) { if ( 'toplevel_page_bp_groups_per_page' != $option && 'toplevel_page_bp_groups_network_per_page' != $option ) return $value; // Per page. $new_value = (int) $new_value; if ( $new_value < 1 || $new_value > 999 ) return $value; return $new_value; } /** * Select the appropriate Groups admin screen, and output it. * * @since 1.7.0 */ function bp_groups_admin() { // Decide whether to load the index or edit screen. $doaction = bp_admin_list_table_current_bulk_action(); // Display the single group edit screen. if ( 'edit' == $doaction && ! empty( $_GET['gid'] ) ) { bp_groups_admin_edit(); // Display the group deletion confirmation screen. } elseif ( 'delete' == $doaction && ! empty( $_GET['gid'] ) ) { bp_groups_admin_delete(); // Otherwise, display the groups index screen. } else { bp_groups_admin_index(); } } /** * Display the single groups edit screen. * * @since 1.7.0 */ function bp_groups_admin_edit() { if ( ! bp_current_user_can( 'bp_moderate' ) ) die( '-1' ); $messages = array(); // If the user has just made a change to a group, build status messages. if ( !empty( $_REQUEST['no_admins'] ) || ! empty( $_REQUEST['error'] ) || ! empty( $_REQUEST['updated'] ) || ! empty( $_REQUEST['error_new'] ) || ! empty( $_REQUEST['success_new'] ) || ! empty( $_REQUEST['error_modified'] ) || ! empty( $_REQUEST['success_modified'] ) ) { $no_admins = ! empty( $_REQUEST['no_admins'] ) ? 1 : 0; $errors = ! empty( $_REQUEST['error'] ) ? $_REQUEST['error'] : ''; $updated = ! empty( $_REQUEST['updated'] ) ? $_REQUEST['updated'] : ''; $error_new = ! empty( $_REQUEST['error_new'] ) ? explode( ',', $_REQUEST['error_new'] ) : array(); $success_new = ! empty( $_REQUEST['success_new'] ) ? explode( ',', $_REQUEST['success_new'] ) : array(); $error_modified = ! empty( $_REQUEST['error_modified'] ) ? explode( ',', $_REQUEST['error_modified'] ) : array(); $success_modified = ! empty( $_REQUEST['success_modified'] ) ? explode( ',', $_REQUEST['success_modified'] ) : array(); if ( ! empty( $no_admins ) ) { $messages[] = __( 'You cannot remove all administrators from a group.', 'buddypress' ); } if ( ! empty( $errors ) ) { if ( $errors < 0 ) { $messages[] = __( 'Group name, slug, and description are all required fields.', 'buddypress' ); } else { $messages[] = __( 'An error occurred when trying to update your group details.', 'buddypress' ); } } elseif ( ! empty( $updated ) ) { $messages[] = __( 'The group has been updated successfully.', 'buddypress' ); } if ( ! empty( $error_new ) ) { /* translators: %s: comma separated list of usernames */ $messages[] = sprintf( __( 'The following users could not be added to the group: %s', 'buddypress' ), '' . esc_html( implode( ', ', $error_new ) ) . '' ); } if ( ! empty( $success_new ) ) { /* translators: %s: comma separated list of usernames */ $messages[] = sprintf( __( 'The following users were successfully added to the group: %s', 'buddypress' ), '' . esc_html( implode( ', ', $success_new ) ) . '' ); } if ( ! empty( $error_modified ) ) { $error_modified = bp_groups_admin_get_usernames_from_ids( $error_modified ); /* translators: %s: comma separated list of usernames */ $messages[] = sprintf( __( 'An error occurred when trying to modify the following members: %s', 'buddypress' ), '' . esc_html( implode( ', ', $error_modified ) ) . '' ); } if ( ! empty( $success_modified ) ) { $success_modified = bp_groups_admin_get_usernames_from_ids( $success_modified ); /* translators: %s: comma separated list of usernames */ $messages[] = sprintf( __( 'The following members were successfully modified: %s', 'buddypress' ), '' . esc_html( implode( ', ', $success_modified ) ) . '' ); } } $is_error = ! empty( $no_admins ) || ! empty( $errors ) || ! empty( $error_new ) || ! empty( $error_modified ); // Get the group from the database. $group = groups_get_group( (int) $_GET['gid'] ); $group_name = isset( $group->name ) ? bp_get_group_name( $group ) : ''; // Construct URL for form. $form_url = remove_query_arg( array( 'action', 'deleted', 'no_admins', 'error', 'error_new', 'success_new', 'error_modified', 'success_modified' ), $_SERVER['REQUEST_URI'] ); $form_url = add_query_arg( 'action', 'save', $form_url ); /** * Fires before the display of the edit form. * * Useful for plugins to modify the group before display. * * @since 1.7.0 * * @param BP_Groups_Group $this Instance of the current group being edited. Passed by reference. */ do_action_ref_array( 'bp_groups_admin_edit', array( &$group ) ); ?>


", $messages ); ?>

id ) : ?>

description ), 'bp-groups-description', array( 'media_buttons' => false, 'teeny' => true, 'textarea_rows' => 5, 'quicktags' => array( 'buttons' => 'strong,em,link,block,del,ins,img,code,spell,close' ) ) ); ?>
id, 'side', $group ); ?>
id, 'normal', $group ); ?> id, 'advanced', $group ); ?>
id ); ?>

%3$s', __( 'No group found with this ID.', 'buddypress' ), esc_url( bp_get_admin_url( 'admin.php?page=bp-groups' ) ), __( 'Go back and try again.', 'buddypress' ) ); ?>

$group_ids, 'show_hidden' => true, 'per_page' => null, // Return all results. ) ); // Create a new list of group ids, based on those that actually exist. $gids = array(); foreach ( $groups['groups'] as $group ) { $gids[] = $group->id; } $base_url = remove_query_arg( array( 'action', 'action2', 'paged', 's', '_wpnonce', 'gid' ), $_SERVER['REQUEST_URI'] ); ?>


0 ) { /* translators: %s: number of deleted groups */ $messages[] = sprintf( _n( '%s group has been permanently deleted.', '%s groups have been permanently deleted.', $deleted, 'buddypress' ), number_format_i18n( $deleted ) ); } } // Prepare the group items for display. $bp_groups_list_table->prepare_items(); /** * Fires before the display of messages for the edit form. * * Useful for plugins to modify the messages before display. * * @since 1.7.0 * * @param array $messages Array of messages to be displayed. */ do_action( 'bp_groups_admin_index', $messages ); ?>


\n", $messages ); ?>

views(); ?>
search_box( __( 'Search all Groups', 'buddypress' ), 'bp-groups' ); ?> display(); ?>
id ); ?>

id ) ); // Inject the Group Manage Members interface. bp_groups_manage_group_members_interface( 'admin_footer' ); /** * Echo out the JavaScript variable. * This seems to be required by the autocompleter, leaving this here for now... */ echo ''; return; } // Pull up a list of group members, so we can separate out the types // We'll also keep track of group members here to place them into a // JavaScript variable, which will help with group member autocomplete. $members = array( 'admin' => array(), 'mod' => array(), 'member' => array(), 'banned' => array(), ); $pagination = array( 'admin' => array(), 'mod' => array(), 'member' => array(), 'banned' => array(), ); foreach ( $members as $type => &$member_type_users ) { $page_qs_key = $type . '_page'; $current_type_page = isset( $_GET[ $page_qs_key ] ) ? absint( $_GET[ $page_qs_key ] ) : 1; $member_type_query = new BP_Group_Member_Query( array( 'group_id' => $item->id, 'group_role' => array( $type ), 'type' => 'alphabetical', /** * Filters the admin members type per page value. * * @since 2.8.0 * * @param int $value Member types per page. Default 10. * @param string $type Member type. */ 'per_page' => apply_filters( 'bp_groups_admin_members_type_per_page', 10, $type ), 'page' => $current_type_page, ) ); $member_type_users = $member_type_query->results; $pagination[ $type ] = bp_groups_admin_create_pagination_links( $member_type_query, $type ); } // Echo out the JavaScript variable. echo ''; // Loop through each member type. foreach ( $members as $member_type => $type_users ) : ?>

ID ); ?> $type_user->ID, 'width' => '32', 'height' => '32' ) ); ?> ID ); ?>
ID, $item ); ?>

'bp-groups', 'gid' => $item->id ), bp_get_admin_url( 'admin.php' ) ); ?>
id ) ) { return; } $types = bp_groups_get_group_types( array(), 'objects' ); $current_types = (array) bp_groups_get_group_type( $group->id, false ); $backend_only = bp_groups_get_group_types( array( 'show_in_create_screen' => false ) ); ?> id, 'bp-group-type-nonce' ); } /** * Process changes from the Group Type metabox. * * @since 2.6.0 * * @param int $group_id Group ID. */ function bp_groups_process_group_type_update( $group_id ) { if ( ! isset( $_POST['bp-group-type-nonce'] ) ) { return; } check_admin_referer( 'bp-group-type-change-' . $group_id, 'bp-group-type-nonce' ); // Permission check. if ( ! bp_current_user_can( 'bp_moderate' ) ) { return; } $group_types = ! empty( $_POST['bp-groups-group-type'] ) ? wp_unslash( $_POST['bp-groups-group-type'] ) : array(); /* * If an invalid group type is passed, someone's doing something * fishy with the POST request, so we can fail silently. */ if ( bp_groups_set_group_type( $group_id, $group_types ) ) { // @todo Success messages can't be posted because other stuff happens on the page load. } } add_action( 'bp_group_admin_edit_after', 'bp_groups_process_group_type_update' ); /** * Create pagination links out of a BP_Group_Member_Query. * * This function is intended to create pagination links for use under the * Manage Members section of the Groups Admin Dashboard pages. It is a stopgap * measure until a more general pagination solution is in place for BuddyPress. * Plugin authors should not use this function, as it is likely to be * deprecated soon. * * @since 1.8.0 * * @param BP_Group_Member_Query $query A BP_Group_Member_Query object. * @param string $member_type member|mod|admin|banned. * @return string Pagination links HTML. */ function bp_groups_admin_create_pagination_links( BP_Group_Member_Query $query, $member_type ) { $pagination = ''; if ( ! in_array( $member_type, array( 'admin', 'mod', 'member', 'banned' ) ) ) { return $pagination; } // The key used to paginate this member type in the $_GET global. $qs_key = $member_type . '_page'; $url_base = remove_query_arg( array( $qs_key, 'updated', 'success_modified' ), $_SERVER['REQUEST_URI'] ); $page = isset( $_GET[ $qs_key ] ) ? absint( $_GET[ $qs_key ] ) : 1; /** * Filters the number of members per member type that is displayed in group editing admin area. * * @since 2.8.0 * * @param string $member_type Member type, which is a group role (admin, mod etc). */ $per_page = apply_filters( 'bp_groups_admin_members_type_per_page', 10, $member_type ); // Don't show anything if there's no pagination. if ( 1 === $page && $query->total_users <= $per_page ) { return $pagination; } $current_page_start = ( ( $page - 1 ) * $per_page ) + 1; $current_page_end = $page * $per_page > intval( $query->total_users ) ? $query->total_users : $page * $per_page; $pag_links = paginate_links( array( 'base' => add_query_arg( $qs_key, '%#%', $url_base ), 'format' => '', 'prev_text' => __( '«', 'buddypress' ), 'next_text' => __( '»', 'buddypress' ), 'total' => ceil( $query->total_users / $per_page ), 'current' => $page, ) ); if ( 1 == $query->total_users ) { $viewing_text = __( 'Viewing 1 member', 'buddypress' ); } else { $viewing_text = sprintf( /* translators: 1: group member from number. 2: group member to number. 3: total group members. */ _nx( 'Viewing %1$s - %2$s of %3$s member', 'Viewing %1$s - %2$s of %3$s members', $query->total_users, 'Group members pagination in group admin', 'buddypress' ), bp_core_number_format( $current_page_start ), bp_core_number_format( $current_page_end ), bp_core_number_format( $query->total_users ) ); } $pagination .= '' . $viewing_text . ''; $pagination .= '' . $pag_links . ''; return $pagination; } /** * Get a set of usernames corresponding to a set of user IDs. * * @since 1.7.0 * * @param array $user_ids Array of user IDs. * @return array Array of user_logins corresponding to $user_ids. */ function bp_groups_admin_get_usernames_from_ids( $user_ids = array() ) { $usernames = array(); $users = new WP_User_Query( array( 'blog_id' => 0, 'include' => $user_ids ) ); foreach ( (array) $users->results as $user ) { $usernames[] = $user->user_login; } return $usernames; } /** * AJAX handler for group member autocomplete requests. * * @since 1.7.0 */ function bp_groups_admin_autocomplete_handler() { // Bail if user user shouldn't be here, or is a large network. if ( ! bp_current_user_can( 'bp_moderate' ) || bp_is_large_install() ) { wp_die( -1 ); } $term = isset( $_GET['term'] ) ? sanitize_text_field( $_GET['term'] ) : ''; $group_id = isset( $_GET['group_id'] ) ? absint( $_GET['group_id'] ) : 0; if ( ! $term || ! $group_id ) { wp_die( -1 ); } $suggestions = bp_core_get_suggestions( array( 'group_id' => -$group_id, // A negative value will exclude this group's members from the suggestions. 'limit' => 10, 'term' => $term, 'type' => 'members', ) ); $matches = array(); if ( $suggestions && ! is_wp_error( $suggestions ) ) { foreach ( $suggestions as $user ) { $matches[] = array( // Translators: 1: user_login, 2: user_email. 'label' => sprintf( __( '%1$s (%2$s)', 'buddypress' ), $user->name, $user->ID ), 'value' => $user->ID, ); } } wp_die( json_encode( $matches ) ); } add_action( 'wp_ajax_bp_group_admin_member_autocomplete', 'bp_groups_admin_autocomplete_handler' ); /** * Process input from the Group Type bulk change select. * * @since 2.7.0 * * @param string $doaction Current $_GET action being performed in admin screen. */ function bp_groups_admin_process_group_type_bulk_changes( $doaction ) { // Bail if no groups are specified or if this isn't a relevant action. if ( empty( $_REQUEST['gid'] ) || ( empty( $_REQUEST['bp_change_type'] ) && empty( $_REQUEST['bp_change_type2'] ) ) || empty( $_REQUEST['bp_change_group_type'] ) ) { return; } // Bail if nonce check fails. check_admin_referer( 'bp-bulk-groups-change-type-' . bp_loggedin_user_id(), 'bp-bulk-groups-change-type-nonce' ); if ( ! bp_current_user_can( 'bp_moderate' ) ) { return; } $new_type = ''; if ( ! empty( $_REQUEST['bp_change_type2'] ) ) { $new_type = sanitize_text_field( $_REQUEST['bp_change_type2'] ); } elseif ( ! empty( $_REQUEST['bp_change_type'] ) ) { $new_type = sanitize_text_field( $_REQUEST['bp_change_type'] ); } // Check that the selected type actually exists. if ( 'remove_group_type' !== $new_type && null === bp_groups_get_group_type_object( $new_type ) ) { $error = true; } else { // Run through group ids. $error = false; foreach ( (array) $_REQUEST['gid'] as $group_id ) { $group_id = (int) $group_id; // Get the old group type to check against. $current_types = bp_groups_get_group_type( $group_id, false ); if ( $current_types && 'remove_group_type' === $new_type ) { $group_types = array(); } elseif ( ! $current_types || 1 !== count( $current_types ) || $new_type !== $current_types[0] ) { $group_types = array( $new_type ); } // Set the new group type. if ( isset( $group_types ) ) { $set = bp_groups_set_group_type( $group_id, $group_types ); if ( false === $set || is_wp_error( $set ) ) { $error = true; } unset( $group_types ); } } } // If there were any errors, show the error message. if ( $error ) { $redirect = add_query_arg( array( 'updated' => 'group-type-change-error' ), wp_get_referer() ); } else { $redirect = add_query_arg( array( 'updated' => 'group-type-change-success' ), wp_get_referer() ); } wp_redirect( $redirect ); exit(); } add_action( 'bp_groups_admin_load', 'bp_groups_admin_process_group_type_bulk_changes' ); /** * Display an admin notice upon group type bulk update. * * @since 2.7.0 */ function bp_groups_admin_groups_type_change_notice() { $updated = isset( $_REQUEST['updated'] ) ? $_REQUEST['updated'] : false; // Display feedback. if ( $updated && in_array( $updated, array( 'group-type-change-error', 'group-type-change-success' ), true ) ) { if ( 'group-type-change-error' === $updated ) { $notice = __( 'There was an error while changing group type. Please try again.', 'buddypress' ); $type = 'error'; } else { $notice = __( 'Group type was changed successfully.', 'buddypress' ); $type = 'updated'; } bp_core_add_admin_notice( $notice, $type ); } } add_action( bp_core_admin_hook(), 'bp_groups_admin_groups_type_change_notice' ); /** * Checks whether a group type already exists. * * @since 7.0.0 * * @param boolean $exists True if the group type already exists. False otherwise. * @param string $type_id The group type identifier. * @return boolean True if the group type already exists. False otherwise. */ function bp_groups_type_admin_type_exists( $exists = false, $type_id = '' ) { if ( ! $type_id ) { return $exists; } return ! is_null( bp_groups_get_group_type_object( $type_id ) ); } add_filter( bp_get_group_type_tax_name() . '_check_existing_type', 'bp_groups_type_admin_type_exists', 1, 2 ); /** * Set the feedback messages for the Group Types Admin actions. * * @since 7.0.0 * * @param array $messages The feedback messages. * @return array The feedback messages including the ones for the Group Types Admin actions. */ function bp_groups_type_admin_updated_messages( $messages = array() ) { $type_taxonomy = bp_get_group_type_tax_name(); $messages[ $type_taxonomy ] = array( 0 => '', 1 => __( 'Please define the Group Type ID field.', 'buddypress' ), 2 => __( 'Group type successfully added.', 'buddypress' ), 3 => __( 'Sorry, there was an error and the Group type wasn’t added.', 'buddypress' ), // The following one needs to be != 5. 4 => __( 'Group type successfully updated.', 'buddypress' ), 5 => __( 'Sorry, this Group type already exists.', 'buddypress' ), 6 => __( 'Sorry, the Group type was not deleted: it does not exist.', 'buddypress' ), 7 => __( 'Sorry, This Group type is registered using code, deactivate the plugin or remove the custom code before trying to delete it again.', 'buddypress' ), 8 => __( 'Sorry, there was an error while trying to delete this Group type.', 'buddypress' ), 9 => __( 'Group type successfully deleted.', 'buddypress' ), 10 => __( 'Group type could not be updated due to missing required information.', 'buddypress' ), ); return $messages; } add_filter( 'term_updated_messages', 'bp_groups_type_admin_updated_messages' );