setup_globals(); $this->includes(); $this->setup_actions(); } /** * Set admin-related globals. * * @since 1.6.0 */ private function setup_globals() { $bp = buddypress(); // Paths and URLs $this->admin_dir = trailingslashit( $bp->plugin_dir . 'bp-core/admin' ); // Admin path. $this->admin_url = trailingslashit( $bp->plugin_url . 'bp-core/admin' ); // Admin url. $this->images_url = trailingslashit( $this->admin_url . 'images' ); // Admin images URL. $this->css_url = trailingslashit( $this->admin_url . 'css' ); // Admin css URL. $this->js_url = trailingslashit( $this->admin_url . 'js' ); // Admin css URL. // Main settings page. $this->settings_page = bp_core_do_network_admin() ? 'settings.php' : 'options-general.php'; // Main capability. $this->capability = bp_core_do_network_admin() ? 'manage_network_options' : 'manage_options'; } /** * Include required files. * * @since 1.6.0 */ private function includes() { require( $this->admin_dir . 'bp-core-admin-actions.php' ); require( $this->admin_dir . 'bp-core-admin-settings.php' ); require( $this->admin_dir . 'bp-core-admin-functions.php' ); require( $this->admin_dir . 'bp-core-admin-components.php' ); require( $this->admin_dir . 'bp-core-admin-slugs.php' ); require( $this->admin_dir . 'bp-core-admin-tools.php' ); require( $this->admin_dir . 'bp-core-admin-optouts.php' ); } /** * Set up the admin hooks, actions, and filters. * * @since 1.6.0 * */ private function setup_actions() { /* General Actions ***************************************************/ // Add some page specific output to the . add_action( 'bp_admin_head', array( $this, 'admin_head' ), 999 ); // Add menu item to settings menu. add_action( 'admin_menu', array( $this, 'site_admin_menus' ), 5 ); add_action( bp_core_admin_hook(), array( $this, 'admin_menus' ), 5 ); // Enqueue all admin JS and CSS. add_action( 'bp_admin_enqueue_scripts', array( $this, 'admin_register_styles' ), 1 ); add_action( 'bp_admin_enqueue_scripts', array( $this, 'admin_register_scripts' ), 1 ); add_action( 'bp_admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); /* BuddyPress Actions ************************************************/ // Load the BuddyPress metabox in the WP Nav Menu Admin UI. add_action( 'load-nav-menus.php', 'bp_admin_wp_nav_menu_meta_box' ); // Add settings. add_action( 'bp_register_admin_settings', array( $this, 'register_admin_settings' ) ); // Add a link to BuddyPress Hello in the admin bar. add_action( 'admin_bar_menu', array( $this, 'admin_bar_about_link' ), 100 ); // Add a description of new BuddyPress tools in the available tools page. add_action( 'tool_box', 'bp_core_admin_available_tools_intro' ); add_action( 'bp_network_tool_box', 'bp_core_admin_available_tools_intro' ); // On non-multisite, catch. add_action( 'load-users.php', 'bp_core_admin_user_manage_spammers' ); // Emails. add_filter( 'manage_' . bp_get_email_post_type() . '_posts_columns', array( $this, 'emails_register_situation_column' ) ); add_action( 'manage_' . bp_get_email_post_type() . '_posts_custom_column', array( $this, 'emails_display_situation_column_data' ), 10, 2 ); // Privacy Policy. add_action( 'bp_admin_init', array( $this, 'add_privacy_policy_content' ) ); // BuddyPress Hello. add_action( 'admin_footer', array( $this, 'about_screen' ) ); // BuddyPress Types administration. add_action( 'load-edit-tags.php', array( 'BP_Admin_Types', 'register_types_admin' ) ); // Official BuddyPress supported Add-ons. add_action( 'install_plugins_bp-add-ons', array( $this, 'display_addons_table' ) ); /* Filters ***********************************************************/ // Add link to settings page. add_filter( 'plugin_action_links', array( $this, 'modify_plugin_action_links' ), 10, 2 ); add_filter( 'network_admin_plugin_action_links', array( $this, 'modify_plugin_action_links' ), 10, 2 ); // Add "Mark as Spam" row actions on users.php. add_filter( 'ms_user_row_actions', 'bp_core_admin_user_row_actions', 10, 2 ); add_filter( 'user_row_actions', 'bp_core_admin_user_row_actions', 10, 2 ); // Emails add_filter( 'bp_admin_menu_order', array( $this, 'emails_admin_menu_order' ), 20 ); // Official BuddyPress supported Add-ons. add_filter( 'install_plugins_tabs', array( $this, 'addons_tab' ) ); add_filter( 'install_plugins_table_api_args_bp-add-ons', array( $this,'addons_args' ) ); } /** * Register site- or network-admin nav menu elements. * * Contextually hooked to site or network-admin depending on current configuration. * * @since 1.6.0 */ public function admin_menus() { // Bail if user cannot moderate. if ( ! bp_current_user_can( 'manage_options' ) ) { return; } $hooks = array(); // Changed in BP 1.6 . See bp_core_admin_backpat_menu(). $hooks[] = add_menu_page( __( 'BuddyPress', 'buddypress' ), __( 'BuddyPress', 'buddypress' ), $this->capability, 'bp-general-settings', 'bp_core_admin_backpat_menu', 'div' ); $hooks[] = add_submenu_page( 'bp-general-settings', __( 'BuddyPress Help', 'buddypress' ), __( 'Help', 'buddypress' ), $this->capability, 'bp-general-settings', 'bp_core_admin_backpat_page' ); // Add the option pages. $bp_components_page = add_submenu_page( $this->settings_page, __( 'BuddyPress Components', 'buddypress' ), __( 'BuddyPress', 'buddypress' ), $this->capability, 'bp-components', 'bp_core_admin_components_settings' ); $this->submenu_pages['settings']['bp-components'] = $bp_components_page; $hooks[] = $bp_components_page; $bp_page_settings_page = add_submenu_page( $this->settings_page, __( 'BuddyPress Pages', 'buddypress' ), __( 'BuddyPress Pages', 'buddypress' ), $this->capability, 'bp-page-settings', 'bp_core_admin_slugs_settings' ); $this->submenu_pages['settings']['bp-page-settings'] = $bp_page_settings_page; $hooks[] = $bp_page_settings_page; $bp_settings_page = add_submenu_page( $this->settings_page, __( 'BuddyPress Options', 'buddypress' ), __( 'BuddyPress Options', 'buddypress' ), $this->capability, 'bp-settings', 'bp_core_admin_settings' ); $this->submenu_pages['settings']['bp-settings'] = $bp_settings_page; $hooks[] = $bp_settings_page; // Credits. $bp_credits_page = add_submenu_page( $this->settings_page, __( 'BuddyPress Credits', 'buddypress' ), __( 'BuddyPress Credits', 'buddypress' ), $this->capability, 'bp-credits', array( $this, 'credits_screen' ) ); $this->submenu_pages['settings']['bp-credits'] = $bp_credits_page; $hooks[] = $bp_credits_page; // For consistency with non-Multisite, we add a Tools menu in // the Network Admin as a home for our Tools panel. if ( is_multisite() && bp_core_do_network_admin() ) { $tools_parent = 'network-tools'; $hooks[] = add_menu_page( __( 'Tools', 'buddypress' ), __( 'Tools', 'buddypress' ), $this->capability, $tools_parent, 'bp_core_tools_top_level_item', '', 24 // Just above Settings. ); $hooks[] = add_submenu_page( $tools_parent, __( 'Available Tools', 'buddypress' ), __( 'Available Tools', 'buddypress' ), $this->capability, 'available-tools', 'bp_core_admin_available_tools_page' ); } else { $tools_parent = 'tools.php'; } // Init the Tools submenu pages global. $this->submenu_pages['tools'] = array(); $bp_repair_tools = add_submenu_page( $tools_parent, __( 'BuddyPress Tools', 'buddypress' ), __( 'BuddyPress', 'buddypress' ), $this->capability, 'bp-tools', 'bp_core_admin_tools' ); $this->submenu_pages['tools']['bp-tools'] = $bp_repair_tools; $hooks[] = $bp_repair_tools; $bp_optouts_tools = add_submenu_page( $tools_parent, __( 'Manage Opt-outs', 'buddypress' ), __( 'Manage Opt-outs', 'buddypress' ), $this->capability, 'bp-optouts', 'bp_core_optouts_admin' ); $this->submenu_pages['tools']['bp-optouts'] = $bp_optouts_tools; $hooks[] = $bp_optouts_tools; // For network-wide configs, add a link to (the root site's) Emails screen. if ( is_network_admin() && bp_is_network_activated() ) { $email_labels = bp_get_email_post_type_labels(); $email_url = get_admin_url( bp_get_root_blog_id(), 'edit.php?post_type=' . bp_get_email_post_type() ); $hooks[] = add_menu_page( $email_labels['name'], $email_labels['menu_name'], $this->capability, '', '', 'dashicons-email', 26 ); // Hack: change the link to point to the root site's admin, not the network admin. $GLOBALS['menu'][26][2] = esc_url_raw( $email_url ); } foreach( $hooks as $hook ) { add_action( "admin_head-$hook", 'bp_core_modify_admin_menu_highlight' ); } /** * Fires before adding inline styles for BP Admin tabs. * * @since 10.0.0 * * @param array $submenu_pages The BP_Admin submenu pages passed by reference. */ do_action_ref_array( 'bp_admin_submenu_pages', array( &$this->submenu_pages ) ); foreach( $this->submenu_pages as $subpage_type => $subpage_hooks ) { foreach ( $subpage_hooks as $subpage_hook ) { add_action( "admin_print_styles-{$subpage_hook}", array( $this, 'add_inline_styles' ), 20 ); // When BuddyPress is activated on the network, the settings screens need an admin notice when settings have been updated. if ( is_network_admin() && bp_is_network_activated() && 'settings' === $subpage_type && 'settings_page_bp-credits' !== $subpage_hook ) { add_action( "load-{$subpage_hook}", array( $this, 'admin_load' ) ); } } } } /** * Register site-admin nav menu elements. * * @since 2.5.0 */ public function site_admin_menus() { if ( ! bp_current_user_can( 'manage_options' ) ) { return; } $hooks = array(); // Appearance > Emails. $hooks[] = add_theme_page( _x( 'Emails', 'screen heading', 'buddypress' ), _x( 'Emails', 'screen heading', 'buddypress' ), $this->capability, 'bp-emails-customizer-redirect', 'bp_email_redirect_to_customizer' ); // Emails > Customize. $hooks[] = add_submenu_page( 'edit.php?post_type=' . bp_get_email_post_type(), _x( 'Customize', 'email menu label', 'buddypress' ), _x( 'Customize', 'email menu label', 'buddypress' ), $this->capability, 'bp-emails-customizer-redirect', 'bp_email_redirect_to_customizer' ); foreach( $hooks as $hook ) { add_action( "admin_head-$hook", 'bp_core_modify_admin_menu_highlight' ); } } /** * Register the settings. * * @since 1.6.0 * */ public function register_admin_settings() { /* Main Section ******************************************************/ // Add the main section. add_settings_section( 'bp_main', __( 'Main Settings', 'buddypress' ), 'bp_admin_setting_callback_main_section', 'buddypress' ); // Hide toolbar for logged out users setting. add_settings_field( 'hide-loggedout-adminbar', __( 'Toolbar', 'buddypress' ), 'bp_admin_setting_callback_admin_bar', 'buddypress', 'bp_main' ); register_setting( 'buddypress', 'hide-loggedout-adminbar', 'intval' ); // Allow account deletion. add_settings_field( 'bp-disable-account-deletion', __( 'Account Deletion', 'buddypress' ), 'bp_admin_setting_callback_account_deletion', 'buddypress', 'bp_main' ); register_setting( 'buddypress', 'bp-disable-account-deletion', 'intval' ); // Template pack picker. add_settings_field( '_bp_theme_package_id', __( 'Template Pack', 'buddypress' ), 'bp_admin_setting_callback_theme_package_id', 'buddypress', 'bp_main', array( 'label_for' => '_bp_theme_package_id' ) ); register_setting( 'buddypress', '_bp_theme_package_id', 'sanitize_text_field' ); /* Members Section **************************************************/ // Add the main section. add_settings_section( 'bp_members', _x( 'Members Settings', 'BuddyPress setting tab', 'buddypress' ), 'bp_admin_setting_callback_members_section', 'buddypress' ); // Avatars. add_settings_field( 'bp-disable-avatar-uploads', __( 'Profile Photo Uploads', 'buddypress' ), 'bp_admin_setting_callback_avatar_uploads', 'buddypress', 'bp_members' ); register_setting( 'buddypress', 'bp-disable-avatar-uploads', 'intval' ); // Cover images. if ( bp_is_active( 'members', 'cover_image' ) ) { add_settings_field( 'bp-disable-cover-image-uploads', __( 'Cover Image Uploads', 'buddypress' ), 'bp_admin_setting_callback_cover_image_uploads', 'buddypress', 'bp_members' ); register_setting( 'buddypress', 'bp-disable-cover-image-uploads', 'intval' ); } // Community Invitations. if ( bp_is_active( 'members', 'invitations' ) ) { add_settings_field( 'bp-enable-members-invitations', __( 'Invitations', 'buddypress' ), 'bp_admin_setting_callback_members_invitations', 'buddypress', 'bp_members' ); register_setting( 'buddypress', 'bp-enable-members-invitations', 'intval' ); } // Membership requests. if ( bp_is_active( 'members', 'membership_requests' ) ) { add_settings_field( 'bp-enable-membership-requests', __( 'Membership Requests', 'buddypress' ), 'bp_admin_setting_callback_membership_requests', 'buddypress', 'bp_members' ); register_setting( 'buddypress', 'bp-enable-membership-requests', 'intval' ); } /* XProfile Section **************************************************/ if ( bp_is_active( 'xprofile' ) ) { // Add the main section. add_settings_section( 'bp_xprofile', _x( 'Profile Settings', 'BuddyPress setting tab', 'buddypress' ), 'bp_admin_setting_callback_xprofile_section', 'buddypress' ); // Profile sync setting. add_settings_field( 'bp-disable-profile-sync', __( 'Profile Syncing', 'buddypress' ), 'bp_admin_setting_callback_profile_sync', 'buddypress', 'bp_xprofile' ); register_setting ( 'buddypress', 'bp-disable-profile-sync', 'intval' ); } /* Groups Section ****************************************************/ if ( bp_is_active( 'groups' ) ) { // Add the main section. add_settings_section( 'bp_groups', __( 'Groups Settings', 'buddypress' ), 'bp_admin_setting_callback_groups_section', 'buddypress' ); // Allow subscriptions setting. add_settings_field( 'bp_restrict_group_creation', __( 'Group Creation', 'buddypress' ), 'bp_admin_setting_callback_group_creation', 'buddypress', 'bp_groups' ); register_setting( 'buddypress', 'bp_restrict_group_creation', 'intval' ); // Allow group avatars. add_settings_field( 'bp-disable-group-avatar-uploads', __( 'Group Photo Uploads', 'buddypress' ), 'bp_admin_setting_callback_group_avatar_uploads', 'buddypress', 'bp_groups' ); register_setting( 'buddypress', 'bp-disable-group-avatar-uploads', 'intval' ); // Allow group cover images. if ( bp_is_active( 'groups', 'cover_image' ) ) { add_settings_field( 'bp-disable-group-cover-image-uploads', __( 'Group Cover Image Uploads', 'buddypress' ), 'bp_admin_setting_callback_group_cover_image_uploads', 'buddypress', 'bp_groups' ); register_setting( 'buddypress', 'bp-disable-group-cover-image-uploads', 'intval' ); } } /* Activity Section **************************************************/ if ( bp_is_active( 'activity' ) ) { // Add the main section. add_settings_section( 'bp_activity', __( 'Activity Settings', 'buddypress' ), 'bp_admin_setting_callback_activity_section', 'buddypress' ); // Activity commenting on post and comments. add_settings_field( 'bp-disable-blogforum-comments', __( 'Post Comments', 'buddypress' ), 'bp_admin_setting_callback_blogforum_comments', 'buddypress', 'bp_activity' ); register_setting( 'buddypress', 'bp-disable-blogforum-comments', 'bp_admin_sanitize_callback_blogforum_comments' ); // Activity Heartbeat refresh. add_settings_field( '_bp_enable_heartbeat_refresh', __( 'Activity auto-refresh', 'buddypress' ), 'bp_admin_setting_callback_heartbeat', 'buddypress', 'bp_activity' ); register_setting( 'buddypress', '_bp_enable_heartbeat_refresh', 'intval' ); // Allow activity akismet. if ( is_plugin_active( 'akismet/akismet.php' ) && defined( 'AKISMET_VERSION' ) ) { add_settings_field( '_bp_enable_akismet', __( 'Akismet', 'buddypress' ), 'bp_admin_setting_callback_activity_akismet', 'buddypress', 'bp_activity' ); register_setting( 'buddypress', '_bp_enable_akismet', 'intval' ); } } } /** * Add a link to BuddyPress Hello to the admin bar. * * @since 1.9.0 * @since 3.0.0 Hooked at priority 100 (was 15). * * @param WP_Admin_Bar $wp_admin_bar */ public function admin_bar_about_link( $wp_admin_bar ) { if ( ! is_user_logged_in() ) { return; } $wp_admin_bar->add_node( array( 'parent' => 'wp-logo', 'id' => 'bp-about', 'title' => esc_html_x( 'Hello, BuddyPress!', 'Colloquial alternative to "learn about BuddyPress"', 'buddypress' ), 'href' => bp_get_admin_url( '?hello=buddypress' ), 'meta' => array( 'class' => 'say-hello-buddypress', ), ) ); } /** * Add Settings link to plugins area. * * @since 1.6.0 * * @param array $links Links array in which we would prepend our link. * @param string $file Current plugin basename. * @return array Processed links. */ public function modify_plugin_action_links( $links, $file ) { // Return normal links if not BuddyPress. if ( plugin_basename( buddypress()->basename ) != $file ) { return $links; } // Add a few links to the existing links array. return array_merge( $links, array( 'settings' => '' . esc_html__( 'Settings', 'buddypress' ) . '', 'about' => '' . esc_html_x( 'Hello, BuddyPress!', 'Colloquial alternative to "learn about BuddyPress"', 'buddypress' ) . '' ) ); } /** * Displays an admin notice to inform settings have been saved. * * The notice is only displayed inside the Network Admin when * BuddyPress is network activated. * * @since 10.0.0 */ public function admin_load() { if ( ! isset( $_GET['updated'] ) ) { return; } bp_core_add_admin_notice( __( 'Settings saved.', 'buddypress' ), 'updated' ); } /** * Add some general styling to the admin area. * * @since 1.6.0 */ public function admin_head() { // Settings pages. remove_submenu_page( $this->settings_page, 'bp-page-settings' ); remove_submenu_page( $this->settings_page, 'bp-settings' ); remove_submenu_page( $this->settings_page, 'bp-credits' ); // Network Admin Tools. remove_submenu_page( 'network-tools', 'network-tools' ); // About and Credits pages. remove_submenu_page( 'index.php', 'bp-about' ); remove_submenu_page( 'index.php', 'bp-credits' ); // Nonmembers Opt-outs page. if ( is_network_admin() ) { remove_submenu_page( 'network-tools', 'bp-optouts' ); } else { remove_submenu_page( 'tools.php', 'bp-optouts' ); } } /** * Add some general styling to the admin area. * * @since 1.6.0 */ public function enqueue_scripts() { wp_enqueue_style( 'bp-admin-common-css' ); // BuddyPress Hello. if ( 0 === strpos( get_current_screen()->id, 'dashboard' ) && ! empty( $_GET['hello'] ) && $_GET['hello'] === 'buddypress' ) { wp_enqueue_style( 'bp-hello-css' ); wp_enqueue_script( 'bp-hello-js' ); wp_localize_script( 'bp-hello-js', 'bpHelloStrings', array( 'pageNotFound' => __( 'Sorry, the page you requested was not found.', 'buddypress' ), 'modalLabel' => __( 'Hello BuddyPress', 'buddypress' ), ) ); } } /** * Registers BuddyPress's suggested privacy policy language. * * @since 4.0.0 */ public function add_privacy_policy_content() { $suggested_text = '' . esc_html__( 'Suggested text:', 'buddypress' ) . ' '; $content = ''; $content .= '
'; $content .= '

' . esc_html__( 'What personal data we collect and why we collect it', 'buddypress' ) . '

'; $content .= '

' . esc_html__( 'Sites powered by BuddyPress rely heavily on user-provided data. In this section, you should note what data you collect, from both registered users and anonymous visitors.', 'buddypress' ) . '

'; if ( bp_is_active( 'xprofile' ) ) { $content .= '

' . esc_html__( 'Profile Data', 'buddypress' ) . '

'; $content .= '

' . esc_html__( 'In this section you should note what information is collected on user profiles. The suggested text gives an overview of the kinds of profile data collected by BuddyPress.', 'buddypress' ) . '

'; $content .= '

' . $suggested_text . esc_html__( 'When you register for the site, you may be asked to provide certain personal data for display on your profile. The "Name" field is required as well as public, and user profiles are visible to any site visitor. Other profile information may be required or optional, as configured by the site administrator.', 'buddypress' ) . '

'; $content .= '

' . esc_html__( 'User information provided during account registration can be modified or removed on the Profile > Edit panel. In most cases, users also have control over who is able to view a particular piece of profile content, limiting visibility on a field-by-field basis to friends, logged-in users, or administrators only. Site administrators can read and edit all profile data for all users.', 'buddypress' ) . '

'; } if ( bp_is_active( 'activity' ) ) { $content .= '

' . esc_html__( 'Activity', 'buddypress' ) . '

'; $content .= '

' . esc_html__( 'In this section you should describe the kinds of information collected in the activity stream, how and whether it can be edited or deleted, and to whom the activity is visible.', 'buddypress' ) . '

'; $content .= '

' . $suggested_text . esc_html__( 'This site records certain user actions, in the form of "activity" data. Activity includes updates and comments posted directly to activity streams, as well as descriptions of other actions performed while using the site, such as new friendships, newly joined groups, and profile updates.', 'buddypress' ) . '

'; $content .= '

' . esc_html__( 'The content of activity items obey the same privacy rules as the contexts in which the activity items are created. For example, activity updates created in a user\'s profile is publicly visible, while activity items generated in a private group are visible only to members of that group. Site administrators can view all activity items, regardless of context.', 'buddypress' ) . '

'; $content .= '

' . esc_html__( 'Activity items may be deleted at any time by users who created them. Site administrators can edit all activity items.', 'buddypress' ) . '

'; } if ( bp_is_active( 'messages' ) ) { $content .= '

' . esc_html__( 'Messages', 'buddypress' ) . '

'; $content .= '

' . esc_html__( 'In this section you should describe any personal data related to private messages.', 'buddypress' ) . '

'; $content .= '

' . $suggested_text . esc_html__( 'The content of private messages is visible only to the sender and the recipients of the message. With the exception of site administrators, who can read all private messages, private message content is never visible to other users or site visitors. Site administrators may delete the content of any message.', 'buddypress' ) . '

'; } $content .= '

' . esc_html__( 'Cookies', 'buddypress' ) . '

'; $content .= '

' . esc_html__( 'In this section you should describe the BuddyPress-specific cookies that your site collects. The suggested text describes the default cookies.', 'buddypress' ) . '

'; $content .= '

' . $suggested_text . esc_html__( 'We use a cookie to show success and failure messages to logged-in users, in response to certain actions, like joining a group. These cookies contain no personal data, and are deleted immediately after the next page load.', 'buddypress' ) . '

'; $content .= '

' . esc_html__( 'We use cookies on group, member, and activity directories to keep track of a user\'s browsing preferences. These preferences include the last-selected values of the sort and filter dropdowns, as well as pagination information. These cookies contain no personal data, and are deleted after 24 hours.', 'buddypress' ) . '

'; if ( bp_is_active( 'groups' ) ) { $content .= '

' . esc_html__( 'When a logged-in user creates a new group, we use a number of cookies to keep track of the group creation process. These cookies contain no personal data, and are deleted either upon the successful creation of the group or after 24 hours.', 'buddypress' ) . '

'; } $content .= '
'; wp_add_privacy_policy_content( 'BuddyPress', wp_kses_post( wpautop( $content, false ) ) ); } /** About *****************************************************************/ /** * Output the BuddyPress Hello template. * * @since 1.7.0 Screen content. * @since 3.0.0 Now outputs BuddyPress Hello template. */ public function about_screen() { if ( 0 !== strpos( get_current_screen()->id, 'dashboard' ) || empty( $_GET['hello'] ) || $_GET['hello'] !== 'buddypress' ) { return; } // Get BuddyPress stable version. $version = self::display_version(); $version_slug = 'version-' . str_replace( '.', '-', $version ); ?>

<?php esc_attr_e( 'Illustration showing the Site Membership Requests list.', 'buddypress' ); ?>

%2$s', esc_url( 'https://codex.buddypress.org/administrator-guide/alternative-registration-workflows/#membership-requests-available-in-buddypress-10' ), esc_html__( 'Read more', 'buddypress' ) ) ); ?>


<?php esc_attr_e( 'Illustration showing the new avatar secondary activity.', 'buddypress' ); ?>

%2$s', esc_url( 'https://bpdevel.wordpress.com/2022/01/06/more-engaging-logging-activities-in-10-0-0/' ), esc_html__( 'Developer note', 'buddypress' ) ) ); ?>


<?php esc_attr_e( 'Illustration showing the BuddyPress settings screen.', 'buddypress' ); ?>

<?php esc_attr_e( 'Illustration showing the Edit Pages screen.', 'buddypress' ); ?>


<?php esc_attr_e( 'Illustration showing the Edit Pages screen.', 'buddypress' ); ?>

%2$s', esc_url( add_query_arg( 'tab', 'bp-add-ons', network_admin_url( 'plugin-install.php' ) ) ), esc_html__( 'BuddyPress Add-ons', 'buddypress' ) ) ); ?>




%2$s', esc_url( 'https://buddypress.org/support/' ), esc_html__( 'share your feedback', 'buddypress' ) ) ); ?>



Achilles4400, Adil Öztaşer (oztaser), Boone B Gorges (boonebgorges), Brajesh Singh (sbrajesh), Christian Wach (needle), comminski, Dan Caragea (dancaragea), David Cavins (dcavins), Dhaval Kasavala (dhavalkasvala), Dion Hulse (dd32), durdenx, ellucinda, Evan Stein (vanpop), Gary Jones (garyj), Hasanuzzaman (hasanuzzamanshamim), jakubrak, Jean-David Daviet (Jean-David), Jennifer Burnett (jenfraggle) John James Jacoby (johnjamesjacoby), josett225, Ketan Chawda (ketan_chawda), konnektiv, Laurens Offereins (Offereins), magland, mandro, marioshtika, Mark Robson (markscottrobson), Mathieu Viet (imath), Nifty (niftythree), nunks, oddev56, Paul Gibbs (DJPaul), r-a-y, Renato Alves (espellcaste), rigsbyx, thomaslhotta, Varun Dubey (vapvarun), venutius, yesbutmaybeno.

At.js, bbPress, Caret.js, Cerberus, Ionicons, jquery.cookie, Livestamp.js, MediaWiki, Moment.js, WordPress.

_x( 'Situations', 'Email post type', 'buddypress' ) ); // Inject our 'Situations' column just before the last 'Date' column. return array_slice( $columns, 0, -1, true ) + $situation + array_slice( $columns, -1, null, true ); } /** * Output column data for our custom 'Situations' column. * * @since 2.6.0 * * @param string $column Current column name. * @param int $post_id Current post ID. */ public function emails_display_situation_column_data( $column = '', $post_id = 0 ) { if ( 'situation' !== $column ) { return; } // Grab email situations for the current post. $terms = get_the_terms( $post_id, bp_get_email_tax_type() ); $taxonomy_object = get_taxonomy( bp_get_email_tax_type() ); if ( is_wp_error( $terms ) || ! $terms ) { printf( '%s', $taxonomy_object->labels->no_terms ); } else { $situations = wp_list_pluck( $terms, 'description' ); // Output each situation as a list item. echo ''; } } /** Helpers ***************************************************************/ /** * Return true/false based on whether a query argument is set. * * @see bp_do_activation_redirect() * * @since 2.2.0 * * @return bool */ public static function is_new_install() { return (bool) isset( $_GET['is_new_install'] ); } /** * Return a user-friendly version-number string, for use in translations. * * @since 2.2.0 * * @return string */ public static function display_version() { // Use static variable to prevent recalculations. static $display = ''; // Only calculate on first run. if ( '' === $display ) { // Get current version. $version = bp_get_version(); // Check for prerelease hyphen. $pre = strpos( $version, '-' ); // Strip prerelease suffix. $display = ( false !== $pre ) ? substr( $version, 0, $pre ) : $version; } // Done! return $display; } /** * Add Emails menu item to custom menus array. * * Several BuddyPress components have top-level menu items in the Dashboard, * which all appear together in the middle of the Dashboard menu. This function * adds the Emails screen to the array of these menu items. * * @since 2.4.0 * * @param array $custom_menus The list of top-level BP menu items. * @return array $custom_menus List of top-level BP menu items, with Emails added. */ public function emails_admin_menu_order( $custom_menus = array() ) { array_push( $custom_menus, 'edit.php?post_type=' . bp_get_email_post_type() ); if ( is_network_admin() && bp_is_network_activated() ) { array_push( $custom_menus, get_admin_url( bp_get_root_blog_id(), 'edit.php?post_type=' . bp_get_email_post_type() ) ); } return $custom_menus; } /** * Register styles commonly used by BuddyPress wp-admin screens. * * @since 2.5.0 */ public function admin_register_styles() { $min = bp_core_get_minified_asset_suffix(); $url = $this->css_url; /** * Filters the BuddyPress Core Admin CSS file path. * * @since 1.6.0 * * @param string $file File path for the admin CSS. */ $common_css = apply_filters( 'bp_core_admin_common_css', "{$url}common{$min}.css" ); /** * Filters the BuddyPress admin stylesheet files to register. * * @since 2.5.0 * * @param array $value Array of admin stylesheet file information to register. */ $styles = apply_filters( 'bp_core_admin_register_styles', array( // Legacy. 'bp-admin-common-css' => array( 'file' => $common_css, 'dependencies' => array(), ), // 2.5 'bp-customizer-controls' => array( 'file' => "{$url}customizer-controls{$min}.css", 'dependencies' => array(), ), // 3.0 'bp-hello-css' => array( 'file' => "{$url}hello{$min}.css", 'dependencies' => array( 'bp-admin-common-css', 'thickbox' ), ), ) ); $version = bp_get_version(); foreach ( $styles as $id => $style ) { wp_register_style( $id, $style['file'], $style['dependencies'], $version ); wp_style_add_data( $id, 'rtl', 'replace' ); if ( $min ) { wp_style_add_data( $id, 'suffix', $min ); } } } /** * Register JS commonly used by BuddyPress wp-admin screens. * * @since 2.5.0 */ public function admin_register_scripts() { $min = bp_core_get_minified_asset_suffix(); $url = $this->js_url; /** * Filters the BuddyPress admin JS files to register. * * @since 2.5.0 * * @param array $value Array of admin JS file information to register. */ $scripts = apply_filters( 'bp_core_admin_register_scripts', array( // 2.5 'bp-customizer-controls' => array( 'file' => "{$url}customizer-controls{$min}.js", 'dependencies' => array( 'jquery' ), 'footer' => true, ), // 10.0 'bp-thickbox' => array( 'file' => "{$url}bp-thickbox{$min}.js", 'dependencies' => array( 'thickbox' ), 'footer' => true, ), // 3.0 'bp-hello-js' => array( 'file' => "{$url}hello{$min}.js", 'dependencies' => array( 'bp-thickbox', 'wp-api-request' ), 'footer' => true, ), // 10.0 'bp-dismissible-admin-notices' => array( 'file' => "{$url}dismissible-admin-notices.js", 'dependencies' => array(), 'footer' => true, 'extra' => array( 'name' => 'bpDismissibleAdminNoticesSettings', 'data' => array( 'url' => bp_core_ajax_url(), 'nonce' => wp_create_nonce( 'bp_dismiss_admin_notice' ), ), ), ), ) ); $version = bp_get_version(); foreach ( $scripts as $id => $script ) { wp_register_script( $id, $script['file'], $script['dependencies'], $version, $script['footer'] ); if ( isset( $script['extra'] ) ) { // List the block specific props. wp_add_inline_script( $id, sprintf( 'var %1$s = %2$s;', $script['extra']['name'], wp_json_encode( $script['extra']['data'] ) ), 'before' ); } } } /** * Adds inline styles to adapt the number of grid columns according to the number of BP Admin tabs. * * @since 10.0.0 */ public function add_inline_styles() { $screen = get_current_screen(); if ( ! isset( $screen->id ) ) { return; } // We might need to edit this id, see below code. $screen_id = $screen->id; // Multisite configs adds a '-network' suffix to page hooknames inside the Network Admin screens. if ( is_multisite() && is_network_admin() && bp_is_network_activated() ) { $screen_id = str_replace( '-network', '', $screen_id ); } $current_settings_tab_id = array_search( $screen_id, $this->submenu_pages['settings'], true ); $current_tools_tab_id = array_search( $screen_id, $this->submenu_pages['tools'], true ); $current_tab_id = ''; $tabs = array(); $context = ''; if ( $current_settings_tab_id ) { $current_tab_id = $current_settings_tab_id; $tabs = wp_list_pluck( bp_core_get_admin_settings_tabs(), 'name', 'id' ); $context = 'settings'; } elseif ( $current_tools_tab_id ) { $current_tab_id = $current_tools_tab_id; $tabs = wp_list_pluck( bp_core_get_admin_tools_tabs(), 'name', 'id' ); $context = 'tools'; } if ( $current_tab_id && isset( $tabs[ $current_tab_id ] ) ) { $this->nav_tabs = bp_core_admin_tabs( $tabs[ $current_tab_id ], $context, false ); $grid_columns = array_fill( 0, count( $this->nav_tabs ), '1fr'); $help_tab_css = ''; if ( $screen->get_help_tabs() ) { $help_tab_css = '#screen-meta { margin-right: 0; } #screen-meta-links { position: absolute; right: 0; }'; } wp_add_inline_style( 'bp-admin-common-css', sprintf( '.buddypress-tabs-wrapper { -ms-grid-columns: %1$s; grid-template-columns: %1$s; } %2$s', implode( " ", $grid_columns ), $help_tab_css ) ); } } /** * Add a "BuddyPress Add-ons" tab to the Add Plugins Admin screen. * * @since 10.0.0 * * @param array $tabs The list of "Add Plugins" Tabs (Featured, Recommended, etc..). * @return array The same list including the "BuddyPress Add-ons" tab. */ public function addons_tab( $tabs = array() ) { $keys = array_keys( $tabs ); $index = array_search( 'favorites', $keys, true ); // Makes sure the "BuddyPress Add-ons" tab is right after the "Favorites" one. $new_tabs = array_merge( array_slice( $tabs, 0, $index + 1, true ), array( 'bp-add-ons' => __( 'BuddyPress Add-ons', 'buddypress' ), ), $tabs ); return $new_tabs; } /** * Customize the Plugins API query arguments. * * The most important argument is the $user one which is set to "buddypress". * Using this key and value will fetch the plugins the w.org "buddypress" user favorited. * * @since 10.0.0 * * @global int $paged The current page of the Plugin results. * @param false|array $args `false` by default. * @return array The "BuddyPress add-ons" args. */ public function addons_args( $args = false ) { global $paged; return array( 'page' => $paged, 'per_page' => 10, 'locale' => get_user_locale(), 'user' => 'buddypress', ); } /** * Displays the list of "BuddyPress Add-ons". * * @since 10.0.0 */ public function display_addons_table() { $notice_id = 'bp100-welcome-addons'; $dismissed = bp_get_option( "bp-dismissed-notice-{$notice_id}", false ); if ( ! $dismissed ) { // Enqueue the Script to Ajax Dismiss an Admin notice. wp_enqueue_script( 'bp-dismissible-admin-notices' ); ?>